@bubblelab/bubble-core 0.1.30 → 0.1.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bubble-bundle.d.ts +11 -11
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +6 -6
- package/dist/bubbles/service-bubble/jira/index.d.ts +1 -1
- package/dist/bubbles/service-bubble/jira/index.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/index.js.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.d.ts +64 -54
- package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.js +87 -12
- package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +75 -74
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.js +5 -7
- package/dist/bubbles/service-bubble/jira/jira.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
- package/dist/bubbles.json +12 -20
- package/package.json +2 -2
package/dist/bubble-bundle.d.ts
CHANGED
|
@@ -260,7 +260,7 @@ export interface IToolBubble<TResult extends BubbleOperationResult = BubbleOpera
|
|
|
260
260
|
export interface IUIBubble extends IBubble { readonly type: 'ui'; template: string; }
|
|
261
261
|
export interface IInfraBubble extends IBubble { readonly type: 'infra'; provider: 'aws' | 'gcp' | 'supabase'; resourceType: string; }
|
|
262
262
|
export type BubbleFlowOperationResult = unknown; export interface BubbleContext { logger?: BubbleLogger; variableId?: number; invocationCallSiteKey?: string; dependencyGraph?: DependencyGraphNode; currentUniqueId?: string; __uniqueIdCounters__?: Record<string, number>; [key: string]: unknown; }
|
|
263
|
-
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; export declare const SqlOperations: z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "WITH", "EXPLAIN", "ANALYZE", "SHOW", "DESCRIBE", "DESC", "CREATE"]>; declare const PostgreSQLParamsSchema: z.ZodObject<{ ignoreSSL: z.ZodDefault<z.ZodBoolean>; query: z.ZodEffects<z.ZodString, string, string>; allowedOperations: z.ZodDefault<z.ZodArray<z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "WITH", "EXPLAIN", "ANALYZE", "SHOW", "DESCRIBE", "DESC", "CREATE"]>, "many">>; parameters: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>; timeout: z.ZodDefault<z.ZodNumber>; maxRows: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { timeout: number; ignoreSSL: boolean;
|
|
263
|
+
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; export declare const SqlOperations: z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "WITH", "EXPLAIN", "ANALYZE", "SHOW", "DESCRIBE", "DESC", "CREATE"]>; declare const PostgreSQLParamsSchema: z.ZodObject<{ ignoreSSL: z.ZodDefault<z.ZodBoolean>; query: z.ZodEffects<z.ZodString, string, string>; allowedOperations: z.ZodDefault<z.ZodArray<z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "WITH", "EXPLAIN", "ANALYZE", "SHOW", "DESCRIBE", "DESC", "CREATE"]>, "many">>; parameters: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>; timeout: z.ZodDefault<z.ZodNumber>; maxRows: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { query: string; timeout: number; ignoreSSL: boolean; allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[]; parameters: unknown[]; maxRows: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { query: string; credentials?: Partial<Record<CredentialType, string>> | undefined; timeout?: number | undefined; ignoreSSL?: boolean | undefined; allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined; parameters?: unknown[] | undefined; maxRows?: number | undefined; }>; type PostgreSQLParamsInput = z.input<typeof PostgreSQLParamsSchema>;; type PostgreSQLParams = z.output<typeof PostgreSQLParamsSchema>; declare const PostgreSQLResultSchema: z.ZodObject<{ rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">; rowCount: z.ZodNullable<z.ZodNumber>; command: z.ZodString; fields: z.ZodOptional<z.ZodArray<z.ZodObject<{ name: z.ZodString; dataTypeID: z.ZodNumber; }, "strip", z.ZodTypeAny, { name: string; dataTypeID: number; }, { name: string; dataTypeID: number; }>, "many">>; executionTime: z.ZodNumber; success: z.ZodBoolean; error: z.ZodString; cleanedJSONString: z.ZodString; }, "strip", z.ZodTypeAny, { success: boolean; error: string; rows: Record<string, unknown>[]; rowCount: number | null; command: string; executionTime: number; cleanedJSONString: string; fields?: { name: string; dataTypeID: number; }[] | undefined; }, { success: boolean; error: string; rows: Record<string, unknown>[]; rowCount: number | null; command: string; executionTime: number; cleanedJSONString: string; fields?: { name: string; dataTypeID: number; }[] | undefined; }>; type PostgreSQLResult = z.output<typeof PostgreSQLResultSchema>; export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, PostgreSQLResult> { testCredential(): Promise<boolean>; static readonly type: "service"; static readonly service = "postgresql"; static readonly authType: "connection-string"; static readonly bubbleName = "postgresql"; static readonly schema: z.ZodObject<{ ignoreSSL: z.ZodDefault<z.ZodBoolean>; query: z.ZodEffects<z.ZodString, string, string>; allowedOperations: z.ZodDefault<z.ZodArray<z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "WITH", "EXPLAIN", "ANALYZE", "SHOW", "DESCRIBE", "DESC", "CREATE"]>, "many">>; parameters: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>; timeout: z.ZodDefault<z.ZodNumber>; maxRows: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { query: string; timeout: number; ignoreSSL: boolean; allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[]; parameters: unknown[]; maxRows: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { query: string; credentials?: Partial<Record<CredentialType, string>> | undefined; timeout?: number | undefined; ignoreSSL?: boolean | undefined; allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined; parameters?: unknown[] | undefined; maxRows?: number | undefined; }>; static readonly resultSchema: z.ZodObject<{ rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">; rowCount: z.ZodNullable<z.ZodNumber>; command: z.ZodString; fields: z.ZodOptional<z.ZodArray<z.ZodObject<{ name: z.ZodString; dataTypeID: z.ZodNumber; }, "strip", z.ZodTypeAny, { name: string; dataTypeID: number; }, { name: string; dataTypeID: number; }>, "many">>; executionTime: z.ZodNumber; success: z.ZodBoolean; error: z.ZodString; cleanedJSONString: z.ZodString; }, "strip", z.ZodTypeAny, { success: boolean; error: string; rows: Record<string, unknown>[]; rowCount: number | null; command: string; executionTime: number; cleanedJSONString: string; fields?: { name: string; dataTypeID: number; }[] | undefined; }, { success: boolean; error: string; rows: Record<string, unknown>[]; rowCount: number | null; command: string; executionTime: number; cleanedJSONString: string; fields?: { name: string; dataTypeID: number; }[] | undefined; }>; static readonly shortDescription = "Execute PostgreSQL queries with operation validation"; static readonly longDescription = "See bubble documentation for details"; static readonly alias = "pg"; constructor(params?: PostgreSQLParamsInput, context?: BubbleContext); protected performAction(context?: BubbleContext): Promise<PostgreSQLResult>; getCredentialMetadata(): Promise<DatabaseMetadata | undefined>; private validateSqlOperation; private validateParameterUsage; private validateParenthesesBalance; private cleanJSONString; private cleanObject; protected chooseCredential(): string | undefined; }
|
|
264
264
|
export {}; export declare abstract class BaseBubble<TParams = unknown, TResult extends BubbleOperationResult = BubbleOperationResult> implements IBubble<TResult> { readonly name: string; readonly schema: z.ZodObject<z.ZodRawShape>; readonly resultSchema: z.ZodObject<z.ZodRawShape>; readonly shortDescription: string; readonly longDescription: string; readonly alias?: string; abstract readonly type: 'service' | 'workflow' | 'tool' | 'ui' | 'infra'; protected readonly params: TParams; protected context?: BubbleContext; previousResult: BubbleResult<BubbleOperationResult> | undefined; protected readonly instanceId?: string; constructor(params: unknown, context?: BubbleContext, instanceId?: string); private computeChildContext; saveResult<R extends BubbleOperationResult>(result: BubbleResult<R>): void; clearSavedResult(): void; toJSON(): Record<string, unknown>; action(): Promise<BubbleResult<TResult>>; generateMockResult(): BubbleResult<TResult>; generateMockResultWithSeed(seed: number): BubbleResult<TResult>; protected abstract performAction(context?: BubbleContext): Promise<TResult>; }
|
|
265
265
|
export declare abstract class ServiceBubble<TParams extends ServiceBubbleParams = ServiceBubbleParams, TResult extends BubbleOperationResult = BubbleOperationResult> extends BaseBubble<TParams, TResult> { readonly type: "service"; authType?: 'oauth' | 'apikey' | 'none' | 'connection-string'; constructor(params: unknown, context?: BubbleContext, instanceId?: string); abstract testCredential(): Promise<boolean>; protected abstract chooseCredential(): string | undefined; getCredentialMetadata(): Promise<DatabaseMetadata | undefined>; get currentParams(): Omit<TParams, 'credentials'>; setParam<K extends keyof TParams>(paramName: K, paramValue: TParams[K]): void; get currentContext(): BubbleContext | undefined; }
|
|
266
266
|
export declare class BubbleError extends Error { readonly variableId?: number; readonly bubbleName?: string; constructor(message: string, options?: { variableId?: number; bubbleName?: string; cause?: Error; }); }
|
|
@@ -343,7 +343,7 @@ export interface IToolBubble<TResult extends BubbleOperationResult = BubbleOpera
|
|
|
343
343
|
export interface IUIBubble extends IBubble { readonly type: 'ui'; template: string; }
|
|
344
344
|
export interface IInfraBubble extends IBubble { readonly type: 'infra'; provider: 'aws' | 'gcp' | 'supabase'; resourceType: string; }
|
|
345
345
|
export type BubbleFlowOperationResult = unknown; export interface BubbleContext { logger?: BubbleLogger; variableId?: number; invocationCallSiteKey?: string; dependencyGraph?: DependencyGraphNode; currentUniqueId?: string; __uniqueIdCounters__?: Record<string, number>; [key: string]: unknown; }
|
|
346
|
-
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; declare const HttpParamsSchema: z.ZodObject<{ url: z.ZodString; method: z.ZodDefault<z.ZodEnum<["GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"]>>; headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; body: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>; timeout: z.ZodDefault<z.ZodNumber>; followRedirects: z.ZodDefault<z.ZodBoolean>; authType: z.ZodDefault<z.ZodEnum<["none", "bearer", "basic", "api-key", "api-key-header", "custom"]>>; authHeader: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { url: string; timeout: number; method: "
|
|
346
|
+
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; declare const HttpParamsSchema: z.ZodObject<{ url: z.ZodString; method: z.ZodDefault<z.ZodEnum<["GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"]>>; headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; body: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>; timeout: z.ZodDefault<z.ZodNumber>; followRedirects: z.ZodDefault<z.ZodBoolean>; authType: z.ZodDefault<z.ZodEnum<["none", "bearer", "basic", "api-key", "api-key-header", "custom"]>>; authHeader: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { url: string; timeout: number; method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS"; followRedirects: boolean; authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header"; body?: string | Record<string, unknown> | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; headers?: Record<string, string> | undefined; authHeader?: string | undefined; }, { url: string; body?: string | Record<string, unknown> | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; timeout?: number | undefined; headers?: Record<string, string> | undefined; method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined; followRedirects?: boolean | undefined; authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined; authHeader?: string | undefined; }>; type HttpParamsInput = z.input<typeof HttpParamsSchema>;; type HttpParams = z.output<typeof HttpParamsSchema>; declare const HttpResultSchema: z.ZodObject<{ status: z.ZodNumber; statusText: z.ZodString; headers: z.ZodRecord<z.ZodString, z.ZodString>; body: z.ZodString; json: z.ZodOptional<z.ZodUnknown>; success: z.ZodBoolean; error: z.ZodString; responseTime: z.ZodNumber; size: z.ZodNumber; }, "strip", z.ZodTypeAny, { status: number; body: string; success: boolean; error: string; headers: Record<string, string>; size: number; statusText: string; responseTime: number; json?: unknown; }, { status: number; body: string; success: boolean; error: string; headers: Record<string, string>; size: number; statusText: string; responseTime: number; json?: unknown; }>; type HttpResult = z.output<typeof HttpResultSchema>; export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> { static readonly service = "nodex-core"; static readonly authType: "apikey"; static readonly bubbleName: BubbleName; static readonly type: "service"; static readonly schema: z.ZodObject<{ url: z.ZodString; method: z.ZodDefault<z.ZodEnum<["GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"]>>; headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; body: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>; timeout: z.ZodDefault<z.ZodNumber>; followRedirects: z.ZodDefault<z.ZodBoolean>; authType: z.ZodDefault<z.ZodEnum<["none", "bearer", "basic", "api-key", "api-key-header", "custom"]>>; authHeader: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { url: string; timeout: number; method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS"; followRedirects: boolean; authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header"; body?: string | Record<string, unknown> | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; headers?: Record<string, string> | undefined; authHeader?: string | undefined; }, { url: string; body?: string | Record<string, unknown> | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; timeout?: number | undefined; headers?: Record<string, string> | undefined; method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined; followRedirects?: boolean | undefined; authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined; authHeader?: string | undefined; }>; static readonly resultSchema: z.ZodObject<{ status: z.ZodNumber; statusText: z.ZodString; headers: z.ZodRecord<z.ZodString, z.ZodString>; body: z.ZodString; json: z.ZodOptional<z.ZodUnknown>; success: z.ZodBoolean; error: z.ZodString; responseTime: z.ZodNumber; size: z.ZodNumber; }, "strip", z.ZodTypeAny, { status: number; body: string; success: boolean; error: string; headers: Record<string, string>; size: number; statusText: string; responseTime: number; json?: unknown; }, { status: number; body: string; success: boolean; error: string; headers: Record<string, string>; size: number; statusText: string; responseTime: number; json?: unknown; }>; static readonly shortDescription = "Makes HTTP requests to external APIs and services"; static readonly longDescription = "See bubble documentation for details"; static readonly alias = "fetch"; constructor(params?: HttpParamsInput, context?: BubbleContext); protected chooseCredential(): string | undefined; testCredential(): Promise<boolean>; protected performAction(context?: BubbleContext): Promise<HttpResult>; }
|
|
347
347
|
export {}; export declare class BubbleError extends Error { readonly variableId?: number; readonly bubbleName?: string; constructor(message: string, options?: { variableId?: number; bubbleName?: string; cause?: Error; }); }
|
|
348
348
|
export declare class BubbleValidationError extends BubbleError { readonly validationErrors?: string[]; constructor(message: string, options?: { variableId?: number; bubbleName?: string; validationErrors?: string[]; cause?: Error; }); }
|
|
349
349
|
export declare class BubbleExecutionError extends BubbleError { readonly executionPhase?: 'instantiation' | 'execution' | 'validation'; constructor(message: string, options?: { variableId?: number; bubbleName?: string; executionPhase?: 'instantiation' | 'execution' | 'validation'; cause?: Error; }); }
|
|
@@ -774,9 +774,9 @@ export interface IToolBubble<TResult extends BubbleOperationResult = BubbleOpera
|
|
|
774
774
|
export interface IUIBubble extends IBubble { readonly type: 'ui'; template: string; }
|
|
775
775
|
export interface IInfraBubble extends IBubble { readonly type: 'infra'; provider: 'aws' | 'gcp' | 'supabase'; resourceType: string; }
|
|
776
776
|
export type BubbleFlowOperationResult = unknown; export interface BubbleContext { logger?: BubbleLogger; variableId?: number; invocationCallSiteKey?: string; dependencyGraph?: DependencyGraphNode; currentUniqueId?: string; __uniqueIdCounters__?: Record<string, number>; [key: string]: unknown; }
|
|
777
|
-
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; export declare const JiraUserSchema: z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>; export declare const JiraIssueTypeSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>; export declare const JiraStatusSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>; export declare const JiraPrioritySchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>; export declare const JiraProjectSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>; export declare const JiraCommentSchema: z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>; export declare const JiraTransitionSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>; export declare const JiraIssueSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>; export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; jql: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "search"; jql: string; limit: number; offset: number; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "search"; jql: string; fields?: string[] | undefined; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; key: z.ZodString; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; expand: z.ZodOptional<z.ZodArray<z.ZodEnum<["changelog", "comments", "transitions"]>, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; project: z.ZodString; summary: z.ZodString; type: z.ZodDefault<z.ZodOptional<z.ZodString>>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodString>; priority: z.ZodOptional<z.ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; parent: z.ZodOptional<z.ZodString>; due_date: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { type: string; summary: string; project: string; operation: "create"; description?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }, { summary: string; project: string; operation: "create"; type?: string | undefined; description?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; key: z.ZodString; summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodNullable<z.ZodString>>; priority: z.ZodOptional<z.ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>; labels: z.ZodOptional<z.ZodObject<{ add: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; remove: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; set: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }>>; due_date: z.ZodOptional<z.ZodNullable<z.ZodString>>; comment: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; key: z.ZodString; status: z.ZodOptional<z.ZodString>; transition_id: z.ZodOptional<z.ZodString>; comment: z.ZodOptional<z.ZodString>; resolution: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; key: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "list_projects"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "list_projects"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; project: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; key: z.ZodString; body: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; key: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get_comments"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "get_comments"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>]>; export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; success: z.ZodBoolean; issues: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; offset: z.ZodOptional<z.ZodNumber>; limit: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; key: string; self?: string | undefined; }, { id: string; key: string; self?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "update"; success: boolean; error: string; key?: string | undefined; }, { operation: "update"; success: boolean; error: string; key?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; new_status: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; success: z.ZodBoolean; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; success: z.ZodBoolean; projects: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; success: z.ZodBoolean; issue_types: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; success: z.ZodBoolean; comment: z.ZodOptional<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; success: z.ZodBoolean; comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>]>; export type JiraParams = z.output<typeof JiraParamsSchema>; export
|
|
778
|
-
type JiraParamsInput = z.input<typeof JiraParamsSchema>;;;;; export type JiraResult = z.output<typeof JiraResultSchema>; export type JiraSearchParams = Extract<JiraParams, { operation: 'search'; }>; export type JiraGetParams = Extract<JiraParams, { operation: 'get'; }>; export type JiraCreateParams = Extract<JiraParams, { operation: 'create'; }>; export type JiraUpdateParams = Extract<JiraParams, { operation: 'update'; }>; export type JiraTransitionParams = Extract<JiraParams, { operation: 'transition'; }>; export type JiraListTransitionsParams = Extract<JiraParams, { operation: 'list_transitions'; }>; export type JiraListProjectsParams = Extract<JiraParams, { operation: 'list_projects'; }>; export type JiraListIssueTypesParams = Extract<JiraParams, { operation: 'list_issue_types'; }>; export type JiraAddCommentParams = Extract<JiraParams, { operation: 'add_comment'; }>; export type JiraGetCommentsParams = Extract<JiraParams, { operation: 'get_comments'; }>; export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> extends ServiceBubble<T, Extract<JiraResult, { operation: T['operation']; }>> { static readonly type: "service"; static readonly service = "jira"; static readonly authType: "oauth"; static readonly bubbleName = "jira"; static readonly schema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"search">; jql: import("zod").ZodString; limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { operation: "search"; jql: string; limit: number; offset: number; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "search"; jql: string; fields?: string[] | undefined; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get">; key: import("zod").ZodString; fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; expand: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["changelog", "comments", "transitions"]>, "many">>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"create">; project: import("zod").ZodString; summary: import("zod").ZodString; type: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; description: import("zod").ZodOptional<import("zod").ZodString>; assignee: import("zod").ZodOptional<import("zod").ZodString>; priority: import("zod").ZodOptional<import("zod").ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; parent: import("zod").ZodOptional<import("zod").ZodString>; due_date: import("zod").ZodOptional<import("zod").ZodString>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { type: string; summary: string; project: string; operation: "create"; description?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }, { summary: string; project: string; operation: "create"; type?: string | undefined; description?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"update">; key: import("zod").ZodString; summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodString>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; priority: import("zod").ZodOptional<import("zod").ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>; labels: import("zod").ZodOptional<import("zod").ZodObject<{ add: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; remove: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; set: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; }, "strip", import("zod").ZodTypeAny, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }>>; due_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; comment: import("zod").ZodOptional<import("zod").ZodString>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"transition">; key: import("zod").ZodString; status: import("zod").ZodOptional<import("zod").ZodString>; transition_id: import("zod").ZodOptional<import("zod").ZodString>; comment: import("zod").ZodOptional<import("zod").ZodString>; resolution: import("zod").ZodOptional<import("zod").ZodString>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_transitions">; key: import("zod").ZodString; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_projects">; limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { operation: "list_projects"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "list_projects"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_issue_types">; project: import("zod").ZodString; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"add_comment">; key: import("zod").ZodString; body: import("zod").ZodString; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get_comments">; key: import("zod").ZodString; limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "get_comments"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "get_comments"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>]>; static readonly resultSchema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"search">; success: import("zod").ZodBoolean; issues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; self: import("zod").ZodOptional<import("zod").ZodString>; fields: import("zod").ZodObject<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">>; transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; to: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: import("zod").ZodOptional<import("zod").ZodUnknown>; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; offset: import("zod").ZodOptional<import("zod").ZodNumber>; limit: import("zod").ZodOptional<import("zod").ZodNumber>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get">; success: import("zod").ZodBoolean; issue: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; self: import("zod").ZodOptional<import("zod").ZodString>; fields: import("zod").ZodObject<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">>; transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; to: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: import("zod").ZodOptional<import("zod").ZodUnknown>; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"create">; success: import("zod").ZodBoolean; issue: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; self: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; self?: string | undefined; }, { id: string; key: string; self?: string | undefined; }>>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"update">; success: import("zod").ZodBoolean; key: import("zod").ZodOptional<import("zod").ZodString>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "update"; success: boolean; error: string; key?: string | undefined; }, { operation: "update"; success: boolean; error: string; key?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"transition">; success: import("zod").ZodBoolean; key: import("zod").ZodOptional<import("zod").ZodString>; new_status: import("zod").ZodOptional<import("zod").ZodString>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_transitions">; success: import("zod").ZodBoolean; transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; to: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_projects">; success: import("zod").ZodBoolean; projects: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_issue_types">; success: import("zod").ZodBoolean; issue_types: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>, "many">>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"add_comment">; success: import("zod").ZodBoolean; comment: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get_comments">; success: import("zod").ZodBoolean; comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>]>; static readonly shortDescription = "Jira integration for issue tracking and project management"; static readonly longDescription = "See bubble documentation for details"; static readonly alias = "jira"; constructor(params: T, context?: BubbleContext); testCredential(): Promise<boolean>; private parseCredentials; private makeJiraApiRequest; protected performAction(context?: BubbleContext): Promise<Extract<JiraResult, { operation: T['operation']; }>>; private search; private get; private create; private update; private transition; private listTransitions; private listProjects; private listIssueTypes; private addComment; private getComments; protected chooseCredential(): string | undefined; }
|
|
779
|
-
export declare const JiraUserSchema: z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>; export declare const JiraIssueTypeSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>; export declare const JiraStatusSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>; export declare const JiraPrioritySchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>; export declare const JiraProjectSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>; export declare const JiraCommentSchema: z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>; export declare const JiraTransitionSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>; export declare const JiraIssueSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>; export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; jql: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "search"; jql: string; limit: number; offset: number; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "search"; jql: string; fields?: string[] | undefined; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; key: z.ZodString; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; expand: z.ZodOptional<z.ZodArray<z.ZodEnum<["changelog", "comments", "transitions"]>, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; project: z.ZodString; summary: z.ZodString; type: z.ZodDefault<z.ZodOptional<z.ZodString>>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodString>; priority: z.ZodOptional<z.ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; parent: z.ZodOptional<z.ZodString>; due_date: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { type: string; summary: string; project: string; operation: "create"; description?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }, { summary: string; project: string; operation: "create"; type?: string | undefined; description?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; key: z.ZodString; summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodNullable<z.ZodString>>; priority: z.ZodOptional<z.ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>; labels: z.ZodOptional<z.ZodObject<{ add: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; remove: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; set: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }>>; due_date: z.ZodOptional<z.ZodNullable<z.ZodString>>; comment: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; key: z.ZodString; status: z.ZodOptional<z.ZodString>; transition_id: z.ZodOptional<z.ZodString>; comment: z.ZodOptional<z.ZodString>; resolution: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; key: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "list_projects"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "list_projects"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; project: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; key: z.ZodString; body: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; key: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get_comments"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "get_comments"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>]>; export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; success: z.ZodBoolean; issues: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; offset: z.ZodOptional<z.ZodNumber>; limit: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; key: string; self?: string | undefined; }, { id: string; key: string; self?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "update"; success: boolean; error: string; key?: string | undefined; }, { operation: "update"; success: boolean; error: string; key?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; new_status: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; success: z.ZodBoolean; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; success: z.ZodBoolean; projects: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; success: z.ZodBoolean; issue_types: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; success: z.ZodBoolean; comment: z.ZodOptional<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; success: z.ZodBoolean; comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>]>; export type JiraParams = z.output<typeof JiraParamsSchema>; export type JiraParamsInput = z.input<typeof JiraParamsSchema>; export type JiraResult = z.output<typeof JiraResultSchema>; export type JiraSearchParams = Extract<JiraParams, { operation: 'search'; }>; export type JiraGetParams = Extract<JiraParams, { operation: 'get'; }>; export type JiraCreateParams = Extract<JiraParams, { operation: 'create'; }>; export type JiraUpdateParams = Extract<JiraParams, { operation: 'update'; }>; export type JiraTransitionParams = Extract<JiraParams, { operation: 'transition'; }>; export type JiraListTransitionsParams = Extract<JiraParams, { operation: 'list_transitions'; }>; export type JiraListProjectsParams = Extract<JiraParams, { operation: 'list_projects'; }>; export type JiraListIssueTypesParams = Extract<JiraParams, { operation: 'list_issue_types'; }>; export type JiraAddCommentParams = Extract<JiraParams, { operation: 'add_comment'; }>; export type JiraGetCommentsParams = Extract<JiraParams, { operation: 'get_comments'; }>; interface ADFMark { type: 'strong' | 'em' | 'code' | 'link' | 'strike'; attrs?: { href?: string; title?: string; }; }
|
|
777
|
+
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; export declare const JiraUserSchema: z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>; export declare const JiraIssueTypeSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>; export declare const JiraStatusSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>; export declare const JiraPrioritySchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>; export declare const JiraProjectSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>; export declare const JiraCommentSchema: z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>; export declare const JiraTransitionSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>; export declare const JiraIssueSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>; export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; jql: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "search"; jql: string; limit: number; offset: number; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "search"; jql: string; fields?: string[] | undefined; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; key: z.ZodString; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; expand: z.ZodOptional<z.ZodArray<z.ZodEnum<["changelog", "comments", "transitions"]>, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; project: z.ZodString; summary: z.ZodString; type: z.ZodDefault<z.ZodOptional<z.ZodString>>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodString>; priority: z.ZodOptional<z.ZodString>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; parent: z.ZodOptional<z.ZodString>; due_date: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { type: string; summary: string; project: string; operation: "create"; description?: string | undefined; priority?: string | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }, { summary: string; project: string; operation: "create"; type?: string | undefined; description?: string | undefined; priority?: string | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; key: z.ZodString; summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodNullable<z.ZodString>>; priority: z.ZodOptional<z.ZodString>; labels: z.ZodOptional<z.ZodObject<{ add: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; remove: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; set: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }>>; due_date: z.ZodOptional<z.ZodNullable<z.ZodString>>; comment: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: string | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: string | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; key: z.ZodString; status: z.ZodOptional<z.ZodString>; transition_id: z.ZodOptional<z.ZodString>; comment: z.ZodOptional<z.ZodString>; resolution: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; key: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "list_projects"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "list_projects"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; project: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; key: z.ZodString; body: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; key: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get_comments"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "get_comments"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>]>; export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; success: z.ZodBoolean; issues: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; offset: z.ZodOptional<z.ZodNumber>; limit: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; key: string; self?: string | undefined; }, { id: string; key: string; self?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "update"; success: boolean; error: string; key?: string | undefined; }, { operation: "update"; success: boolean; error: string; key?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; new_status: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; success: z.ZodBoolean; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; success: z.ZodBoolean; projects: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; success: z.ZodBoolean; issue_types: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; success: z.ZodBoolean; comment: z.ZodOptional<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; success: z.ZodBoolean; comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>]>; export type JiraParams = z.output<typeof JiraParamsSchema>; export
|
|
778
|
+
type JiraParamsInput = z.input<typeof JiraParamsSchema>;;;;; export type JiraResult = z.output<typeof JiraResultSchema>; export type JiraSearchParams = Extract<JiraParams, { operation: 'search'; }>; export type JiraGetParams = Extract<JiraParams, { operation: 'get'; }>; export type JiraCreateParams = Extract<JiraParams, { operation: 'create'; }>; export type JiraUpdateParams = Extract<JiraParams, { operation: 'update'; }>; export type JiraTransitionParams = Extract<JiraParams, { operation: 'transition'; }>; export type JiraListTransitionsParams = Extract<JiraParams, { operation: 'list_transitions'; }>; export type JiraListProjectsParams = Extract<JiraParams, { operation: 'list_projects'; }>; export type JiraListIssueTypesParams = Extract<JiraParams, { operation: 'list_issue_types'; }>; export type JiraAddCommentParams = Extract<JiraParams, { operation: 'add_comment'; }>; export type JiraGetCommentsParams = Extract<JiraParams, { operation: 'get_comments'; }>; export type JiraIssue = z.infer<typeof JiraIssueSchema>; export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> extends ServiceBubble<T, Extract<JiraResult, { operation: T['operation']; }>> { static readonly type: "service"; static readonly service = "jira"; static readonly authType: "oauth"; static readonly bubbleName = "jira"; static readonly schema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"search">; jql: import("zod").ZodString; limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { operation: "search"; jql: string; limit: number; offset: number; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "search"; jql: string; fields?: string[] | undefined; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get">; key: import("zod").ZodString; fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; expand: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["changelog", "comments", "transitions"]>, "many">>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"create">; project: import("zod").ZodString; summary: import("zod").ZodString; type: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; description: import("zod").ZodOptional<import("zod").ZodString>; assignee: import("zod").ZodOptional<import("zod").ZodString>; priority: import("zod").ZodOptional<import("zod").ZodString>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; parent: import("zod").ZodOptional<import("zod").ZodString>; due_date: import("zod").ZodOptional<import("zod").ZodString>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { type: string; summary: string; project: string; operation: "create"; description?: string | undefined; priority?: string | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }, { summary: string; project: string; operation: "create"; type?: string | undefined; description?: string | undefined; priority?: string | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"update">; key: import("zod").ZodString; summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodString>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; priority: import("zod").ZodOptional<import("zod").ZodString>; labels: import("zod").ZodOptional<import("zod").ZodObject<{ add: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; remove: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; set: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; }, "strip", import("zod").ZodTypeAny, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }>>; due_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; comment: import("zod").ZodOptional<import("zod").ZodString>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: string | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: string | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"transition">; key: import("zod").ZodString; status: import("zod").ZodOptional<import("zod").ZodString>; transition_id: import("zod").ZodOptional<import("zod").ZodString>; comment: import("zod").ZodOptional<import("zod").ZodString>; resolution: import("zod").ZodOptional<import("zod").ZodString>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_transitions">; key: import("zod").ZodString; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_projects">; limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { operation: "list_projects"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "list_projects"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_issue_types">; project: import("zod").ZodString; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"add_comment">; key: import("zod").ZodString; body: import("zod").ZodString; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get_comments">; key: import("zod").ZodString; limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "get_comments"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "get_comments"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>]>; static readonly resultSchema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"search">; success: import("zod").ZodBoolean; issues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; self: import("zod").ZodOptional<import("zod").ZodString>; fields: import("zod").ZodObject<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">>; transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; to: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: import("zod").ZodOptional<import("zod").ZodUnknown>; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; offset: import("zod").ZodOptional<import("zod").ZodNumber>; limit: import("zod").ZodOptional<import("zod").ZodNumber>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get">; success: import("zod").ZodBoolean; issue: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; self: import("zod").ZodOptional<import("zod").ZodString>; fields: import("zod").ZodObject<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">>; transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; to: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: import("zod").ZodOptional<import("zod").ZodUnknown>; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"create">; success: import("zod").ZodBoolean; issue: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; self: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; self?: string | undefined; }, { id: string; key: string; self?: string | undefined; }>>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"update">; success: import("zod").ZodBoolean; key: import("zod").ZodOptional<import("zod").ZodString>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "update"; success: boolean; error: string; key?: string | undefined; }, { operation: "update"; success: boolean; error: string; key?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"transition">; success: import("zod").ZodBoolean; key: import("zod").ZodOptional<import("zod").ZodString>; new_status: import("zod").ZodOptional<import("zod").ZodString>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_transitions">; success: import("zod").ZodBoolean; transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; to: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_projects">; success: import("zod").ZodBoolean; projects: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_issue_types">; success: import("zod").ZodBoolean; issue_types: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>, "many">>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"add_comment">; success: import("zod").ZodBoolean; comment: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get_comments">; success: import("zod").ZodBoolean; comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>]>; static readonly shortDescription = "Jira integration for issue tracking and project management"; static readonly longDescription = "See bubble documentation for details"; static readonly alias = "jira"; constructor(params: T, context?: BubbleContext); testCredential(): Promise<boolean>; private parseCredentials; private makeJiraApiRequest; private resolveAssigneeAccountId; protected performAction(context?: BubbleContext): Promise<Extract<JiraResult, { operation: T['operation']; }>>; private search; private get; private create; private update; private transition; private listTransitions; private listProjects; private listIssueTypes; private addComment; private getComments; protected chooseCredential(): string | undefined; }
|
|
779
|
+
export declare const JiraUserSchema: z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>; export declare const JiraIssueTypeSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>; export declare const JiraStatusSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>; export declare const JiraPrioritySchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>; export declare const JiraProjectSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>; export declare const JiraCommentSchema: z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>; export declare const JiraTransitionSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>; export declare const JiraIssueSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>; export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; jql: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "search"; jql: string; limit: number; offset: number; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "search"; jql: string; fields?: string[] | undefined; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; key: z.ZodString; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; expand: z.ZodOptional<z.ZodArray<z.ZodEnum<["changelog", "comments", "transitions"]>, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; project: z.ZodString; summary: z.ZodString; type: z.ZodDefault<z.ZodOptional<z.ZodString>>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodString>; priority: z.ZodOptional<z.ZodString>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; parent: z.ZodOptional<z.ZodString>; due_date: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { type: string; summary: string; project: string; operation: "create"; description?: string | undefined; priority?: string | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }, { summary: string; project: string; operation: "create"; type?: string | undefined; description?: string | undefined; priority?: string | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; key: z.ZodString; summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodNullable<z.ZodString>>; priority: z.ZodOptional<z.ZodString>; labels: z.ZodOptional<z.ZodObject<{ add: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; remove: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; set: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }>>; due_date: z.ZodOptional<z.ZodNullable<z.ZodString>>; comment: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: string | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: string | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; key: z.ZodString; status: z.ZodOptional<z.ZodString>; transition_id: z.ZodOptional<z.ZodString>; comment: z.ZodOptional<z.ZodString>; resolution: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; key: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "list_projects"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "list_projects"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; project: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; key: z.ZodString; body: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; key: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get_comments"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "get_comments"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>]>; export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; success: z.ZodBoolean; issues: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; offset: z.ZodOptional<z.ZodNumber>; limit: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; key: string; self?: string | undefined; }, { id: string; key: string; self?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "update"; success: boolean; error: string; key?: string | undefined; }, { operation: "update"; success: boolean; error: string; key?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; new_status: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; success: z.ZodBoolean; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; success: z.ZodBoolean; projects: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; success: z.ZodBoolean; issue_types: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; success: z.ZodBoolean; comment: z.ZodOptional<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; success: z.ZodBoolean; comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>]>; export type JiraParams = z.output<typeof JiraParamsSchema>; export type JiraParamsInput = z.input<typeof JiraParamsSchema>; export type JiraResult = z.output<typeof JiraResultSchema>; export type JiraSearchParams = Extract<JiraParams, { operation: 'search'; }>; export type JiraGetParams = Extract<JiraParams, { operation: 'get'; }>; export type JiraCreateParams = Extract<JiraParams, { operation: 'create'; }>; export type JiraUpdateParams = Extract<JiraParams, { operation: 'update'; }>; export type JiraTransitionParams = Extract<JiraParams, { operation: 'transition'; }>; export type JiraListTransitionsParams = Extract<JiraParams, { operation: 'list_transitions'; }>; export type JiraListProjectsParams = Extract<JiraParams, { operation: 'list_projects'; }>; export type JiraListIssueTypesParams = Extract<JiraParams, { operation: 'list_issue_types'; }>; export type JiraAddCommentParams = Extract<JiraParams, { operation: 'add_comment'; }>; export type JiraGetCommentsParams = Extract<JiraParams, { operation: 'get_comments'; }>; export type JiraIssue = z.infer<typeof JiraIssueSchema>; interface ADFMark { type: 'strong' | 'em' | 'code' | 'link' | 'strike'; attrs?: { href?: string; title?: string; }; }
|
|
780
780
|
interface ADFTextNode { type: 'text'; text: string; marks?: ADFMark[]; }
|
|
781
781
|
interface ADFInlineNode { type: 'hardBreak'; }
|
|
782
782
|
type ADFInlineContent = ADFTextNode | ADFInlineNode; interface ADFParagraphNode { type: 'paragraph'; content?: ADFInlineContent[]; }
|
|
@@ -809,8 +809,8 @@ export interface IToolBubble<TResult extends BubbleOperationResult = BubbleOpera
|
|
|
809
809
|
export interface IUIBubble extends IBubble { readonly type: 'ui'; template: string; }
|
|
810
810
|
export interface IInfraBubble extends IBubble { readonly type: 'infra'; provider: 'aws' | 'gcp' | 'supabase'; resourceType: string; }
|
|
811
811
|
export type BubbleFlowOperationResult = unknown; export interface BubbleContext { logger?: BubbleLogger; variableId?: number; invocationCallSiteKey?: string; dependencyGraph?: DependencyGraphNode; currentUniqueId?: string; __uniqueIdCounters__?: Record<string, number>; [key: string]: unknown; }
|
|
812
|
-
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; export declare const JiraUserSchema: z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>; export declare const JiraIssueTypeSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>; export declare const JiraStatusSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>; export declare const JiraPrioritySchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>; export declare const JiraProjectSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>; export declare const JiraCommentSchema: z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>; export declare const JiraTransitionSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>; export declare const JiraIssueSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>; export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; jql: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "search"; jql: string; limit: number; offset: number; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "search"; jql: string; fields?: string[] | undefined; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; key: z.ZodString; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; expand: z.ZodOptional<z.ZodArray<z.ZodEnum<["changelog", "comments", "transitions"]>, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; project: z.ZodString; summary: z.ZodString; type: z.ZodDefault<z.ZodOptional<z.ZodString>>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodString>; priority: z.ZodOptional<z.ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; parent: z.ZodOptional<z.ZodString>; due_date: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { type: string; summary: string; project: string; operation: "create"; description?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }, { summary: string; project: string; operation: "create"; type?: string | undefined; description?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; key: z.ZodString; summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodNullable<z.ZodString>>; priority: z.ZodOptional<z.ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>; labels: z.ZodOptional<z.ZodObject<{ add: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; remove: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; set: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }>>; due_date: z.ZodOptional<z.ZodNullable<z.ZodString>>; comment: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; key: z.ZodString; status: z.ZodOptional<z.ZodString>; transition_id: z.ZodOptional<z.ZodString>; comment: z.ZodOptional<z.ZodString>; resolution: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; key: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "list_projects"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "list_projects"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; project: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; key: z.ZodString; body: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; key: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get_comments"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "get_comments"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>]>; export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; success: z.ZodBoolean; issues: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; offset: z.ZodOptional<z.ZodNumber>; limit: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; key: string; self?: string | undefined; }, { id: string; key: string; self?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "update"; success: boolean; error: string; key?: string | undefined; }, { operation: "update"; success: boolean; error: string; key?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; new_status: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; success: z.ZodBoolean; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; success: z.ZodBoolean; projects: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; success: z.ZodBoolean; issue_types: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; success: z.ZodBoolean; comment: z.ZodOptional<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; success: z.ZodBoolean; comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>]>; export type JiraParams = z.output<typeof JiraParamsSchema>; export type JiraParamsInput = z.input<typeof JiraParamsSchema>; export type JiraResult = z.output<typeof JiraResultSchema>; export type JiraSearchParams = Extract<JiraParams, { operation: 'search'; }>; export type JiraGetParams = Extract<JiraParams, { operation: 'get'; }>; export type JiraCreateParams = Extract<JiraParams, { operation: 'create'; }>; export type JiraUpdateParams = Extract<JiraParams, { operation: 'update'; }>; export type JiraTransitionParams = Extract<JiraParams, { operation: 'transition'; }>; export type JiraListTransitionsParams = Extract<JiraParams, { operation: 'list_transitions'; }>; export type JiraListProjectsParams = Extract<JiraParams, { operation: 'list_projects'; }>; export type JiraListIssueTypesParams = Extract<JiraParams, { operation: 'list_issue_types'; }>; export type JiraAddCommentParams = Extract<JiraParams, { operation: 'add_comment'; }>; export type JiraGetCommentsParams = Extract<JiraParams, { operation: 'get_comments'; }>; export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> extends ServiceBubble<T, Extract<JiraResult, { operation: T['operation']; }>> { static readonly type: "service"; static readonly service = "jira"; static readonly authType: "oauth"; static readonly bubbleName = "jira"; static readonly schema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"search">; jql: import("zod").ZodString; limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { operation: "search"; jql: string; limit: number; offset: number; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "search"; jql: string; fields?: string[] | undefined; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get">; key: import("zod").ZodString; fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; expand: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["changelog", "comments", "transitions"]>, "many">>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"create">; project: import("zod").ZodString; summary: import("zod").ZodString; type: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; description: import("zod").ZodOptional<import("zod").ZodString>; assignee: import("zod").ZodOptional<import("zod").ZodString>; priority: import("zod").ZodOptional<import("zod").ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; parent: import("zod").ZodOptional<import("zod").ZodString>; due_date: import("zod").ZodOptional<import("zod").ZodString>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { type: string; summary: string; project: string; operation: "create"; description?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }, { summary: string; project: string; operation: "create"; type?: string | undefined; description?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"update">; key: import("zod").ZodString; summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodString>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; priority: import("zod").ZodOptional<import("zod").ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>; labels: import("zod").ZodOptional<import("zod").ZodObject<{ add: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; remove: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; set: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; }, "strip", import("zod").ZodTypeAny, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }>>; due_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; comment: import("zod").ZodOptional<import("zod").ZodString>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"transition">; key: import("zod").ZodString; status: import("zod").ZodOptional<import("zod").ZodString>; transition_id: import("zod").ZodOptional<import("zod").ZodString>; comment: import("zod").ZodOptional<import("zod").ZodString>; resolution: import("zod").ZodOptional<import("zod").ZodString>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_transitions">; key: import("zod").ZodString; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_projects">; limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { operation: "list_projects"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "list_projects"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_issue_types">; project: import("zod").ZodString; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"add_comment">; key: import("zod").ZodString; body: import("zod").ZodString; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get_comments">; key: import("zod").ZodString; limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "get_comments"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "get_comments"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>]>; static readonly resultSchema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"search">; success: import("zod").ZodBoolean; issues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; self: import("zod").ZodOptional<import("zod").ZodString>; fields: import("zod").ZodObject<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">>; transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; to: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: import("zod").ZodOptional<import("zod").ZodUnknown>; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; offset: import("zod").ZodOptional<import("zod").ZodNumber>; limit: import("zod").ZodOptional<import("zod").ZodNumber>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get">; success: import("zod").ZodBoolean; issue: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; self: import("zod").ZodOptional<import("zod").ZodString>; fields: import("zod").ZodObject<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">>; transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; to: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: import("zod").ZodOptional<import("zod").ZodUnknown>; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"create">; success: import("zod").ZodBoolean; issue: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; self: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; self?: string | undefined; }, { id: string; key: string; self?: string | undefined; }>>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"update">; success: import("zod").ZodBoolean; key: import("zod").ZodOptional<import("zod").ZodString>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "update"; success: boolean; error: string; key?: string | undefined; }, { operation: "update"; success: boolean; error: string; key?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"transition">; success: import("zod").ZodBoolean; key: import("zod").ZodOptional<import("zod").ZodString>; new_status: import("zod").ZodOptional<import("zod").ZodString>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_transitions">; success: import("zod").ZodBoolean; transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; to: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_projects">; success: import("zod").ZodBoolean; projects: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_issue_types">; success: import("zod").ZodBoolean; issue_types: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>, "many">>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"add_comment">; success: import("zod").ZodBoolean; comment: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get_comments">; success: import("zod").ZodBoolean; comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodUnknown>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>]>; static readonly shortDescription = "Jira integration for issue tracking and project management"; static readonly longDescription = "See bubble documentation for details"; static readonly alias = "jira"; constructor(params: T, context?: BubbleContext); testCredential(): Promise<boolean>; private parseCredentials; private makeJiraApiRequest; protected performAction(context?: BubbleContext): Promise<Extract<JiraResult, { operation: T['operation']; }>>; private search; private get; private create; private update; private transition; private listTransitions; private listProjects; private listIssueTypes; private addComment; private getComments; protected chooseCredential(): string | undefined; }
|
|
813
|
-
export declare const JiraUserSchema: z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>; export declare const JiraIssueTypeSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>; export declare const JiraStatusSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>; export declare const JiraPrioritySchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>; export declare const JiraProjectSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>; export declare const JiraCommentSchema: z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>; export declare const JiraTransitionSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>; export declare const JiraIssueSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>; export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; jql: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "search"; jql: string; limit: number; offset: number; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "search"; jql: string; fields?: string[] | undefined; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; key: z.ZodString; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; expand: z.ZodOptional<z.ZodArray<z.ZodEnum<["changelog", "comments", "transitions"]>, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; project: z.ZodString; summary: z.ZodString; type: z.ZodDefault<z.ZodOptional<z.ZodString>>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodString>; priority: z.ZodOptional<z.ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; parent: z.ZodOptional<z.ZodString>; due_date: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { type: string; summary: string; project: string; operation: "create"; description?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }, { summary: string; project: string; operation: "create"; type?: string | undefined; description?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; key: z.ZodString; summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodNullable<z.ZodString>>; priority: z.ZodOptional<z.ZodEnum<["Highest", "High", "Medium", "Low", "Lowest"]>>; labels: z.ZodOptional<z.ZodObject<{ add: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; remove: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; set: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }>>; due_date: z.ZodOptional<z.ZodNullable<z.ZodString>>; comment: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: "Highest" | "High" | "Medium" | "Low" | "Lowest" | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; key: z.ZodString; status: z.ZodOptional<z.ZodString>; transition_id: z.ZodOptional<z.ZodString>; comment: z.ZodOptional<z.ZodString>; resolution: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; key: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "list_projects"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "list_projects"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; project: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; key: z.ZodString; body: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; key: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get_comments"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "get_comments"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>]>; export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; success: z.ZodBoolean; issues: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; offset: z.ZodOptional<z.ZodNumber>; limit: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; key: string; self?: string | undefined; }, { id: string; key: string; self?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "update"; success: boolean; error: string; key?: string | undefined; }, { operation: "update"; success: boolean; error: string; key?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; new_status: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; success: z.ZodBoolean; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; success: z.ZodBoolean; projects: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; success: z.ZodBoolean; issue_types: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; success: z.ZodBoolean; comment: z.ZodOptional<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; success: z.ZodBoolean; comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodUnknown>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: unknown; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>]>; export type JiraParams = z.output<typeof JiraParamsSchema>; export type JiraParamsInput = z.input<typeof JiraParamsSchema>; export type JiraResult = z.output<typeof JiraResultSchema>; export type JiraSearchParams = Extract<JiraParams, { operation: 'search'; }>; export type JiraGetParams = Extract<JiraParams, { operation: 'get'; }>; export type JiraCreateParams = Extract<JiraParams, { operation: 'create'; }>; export type JiraUpdateParams = Extract<JiraParams, { operation: 'update'; }>; export type JiraTransitionParams = Extract<JiraParams, { operation: 'transition'; }>; export type JiraListTransitionsParams = Extract<JiraParams, { operation: 'list_transitions'; }>; export type JiraListProjectsParams = Extract<JiraParams, { operation: 'list_projects'; }>; export type JiraListIssueTypesParams = Extract<JiraParams, { operation: 'list_issue_types'; }>; export type JiraAddCommentParams = Extract<JiraParams, { operation: 'add_comment'; }>; export type JiraGetCommentsParams = Extract<JiraParams, { operation: 'get_comments'; }>; interface ADFMark { type: 'strong' | 'em' | 'code' | 'link' | 'strike'; attrs?: { href?: string; title?: string; }; }
|
|
812
|
+
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; export declare const JiraUserSchema: z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>; export declare const JiraIssueTypeSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>; export declare const JiraStatusSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>; export declare const JiraPrioritySchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>; export declare const JiraProjectSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>; export declare const JiraCommentSchema: z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>; export declare const JiraTransitionSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>; export declare const JiraIssueSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>; export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; jql: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "search"; jql: string; limit: number; offset: number; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "search"; jql: string; fields?: string[] | undefined; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; key: z.ZodString; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; expand: z.ZodOptional<z.ZodArray<z.ZodEnum<["changelog", "comments", "transitions"]>, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; project: z.ZodString; summary: z.ZodString; type: z.ZodDefault<z.ZodOptional<z.ZodString>>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodString>; priority: z.ZodOptional<z.ZodString>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; parent: z.ZodOptional<z.ZodString>; due_date: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { type: string; summary: string; project: string; operation: "create"; description?: string | undefined; priority?: string | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }, { summary: string; project: string; operation: "create"; type?: string | undefined; description?: string | undefined; priority?: string | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; key: z.ZodString; summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodNullable<z.ZodString>>; priority: z.ZodOptional<z.ZodString>; labels: z.ZodOptional<z.ZodObject<{ add: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; remove: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; set: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }>>; due_date: z.ZodOptional<z.ZodNullable<z.ZodString>>; comment: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: string | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: string | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; key: z.ZodString; status: z.ZodOptional<z.ZodString>; transition_id: z.ZodOptional<z.ZodString>; comment: z.ZodOptional<z.ZodString>; resolution: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; key: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "list_projects"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "list_projects"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; project: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; key: z.ZodString; body: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; key: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get_comments"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "get_comments"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>]>; export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; success: z.ZodBoolean; issues: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; offset: z.ZodOptional<z.ZodNumber>; limit: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; key: string; self?: string | undefined; }, { id: string; key: string; self?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "update"; success: boolean; error: string; key?: string | undefined; }, { operation: "update"; success: boolean; error: string; key?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; new_status: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; success: z.ZodBoolean; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; success: z.ZodBoolean; projects: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; success: z.ZodBoolean; issue_types: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; success: z.ZodBoolean; comment: z.ZodOptional<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; success: z.ZodBoolean; comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>]>; export type JiraParams = z.output<typeof JiraParamsSchema>; export type JiraParamsInput = z.input<typeof JiraParamsSchema>; export type JiraResult = z.output<typeof JiraResultSchema>; export type JiraSearchParams = Extract<JiraParams, { operation: 'search'; }>; export type JiraGetParams = Extract<JiraParams, { operation: 'get'; }>; export type JiraCreateParams = Extract<JiraParams, { operation: 'create'; }>; export type JiraUpdateParams = Extract<JiraParams, { operation: 'update'; }>; export type JiraTransitionParams = Extract<JiraParams, { operation: 'transition'; }>; export type JiraListTransitionsParams = Extract<JiraParams, { operation: 'list_transitions'; }>; export type JiraListProjectsParams = Extract<JiraParams, { operation: 'list_projects'; }>; export type JiraListIssueTypesParams = Extract<JiraParams, { operation: 'list_issue_types'; }>; export type JiraAddCommentParams = Extract<JiraParams, { operation: 'add_comment'; }>; export type JiraGetCommentsParams = Extract<JiraParams, { operation: 'get_comments'; }>; export type JiraIssue = z.infer<typeof JiraIssueSchema>; export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> extends ServiceBubble<T, Extract<JiraResult, { operation: T['operation']; }>> { static readonly type: "service"; static readonly service = "jira"; static readonly authType: "oauth"; static readonly bubbleName = "jira"; static readonly schema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"search">; jql: import("zod").ZodString; limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { operation: "search"; jql: string; limit: number; offset: number; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "search"; jql: string; fields?: string[] | undefined; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get">; key: import("zod").ZodString; fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; expand: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<["changelog", "comments", "transitions"]>, "many">>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"create">; project: import("zod").ZodString; summary: import("zod").ZodString; type: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>; description: import("zod").ZodOptional<import("zod").ZodString>; assignee: import("zod").ZodOptional<import("zod").ZodString>; priority: import("zod").ZodOptional<import("zod").ZodString>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; parent: import("zod").ZodOptional<import("zod").ZodString>; due_date: import("zod").ZodOptional<import("zod").ZodString>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { type: string; summary: string; project: string; operation: "create"; description?: string | undefined; priority?: string | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }, { summary: string; project: string; operation: "create"; type?: string | undefined; description?: string | undefined; priority?: string | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"update">; key: import("zod").ZodString; summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodString>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; priority: import("zod").ZodOptional<import("zod").ZodString>; labels: import("zod").ZodOptional<import("zod").ZodObject<{ add: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; remove: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; set: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; }, "strip", import("zod").ZodTypeAny, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }>>; due_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; comment: import("zod").ZodOptional<import("zod").ZodString>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: string | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: string | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"transition">; key: import("zod").ZodString; status: import("zod").ZodOptional<import("zod").ZodString>; transition_id: import("zod").ZodOptional<import("zod").ZodString>; comment: import("zod").ZodOptional<import("zod").ZodString>; resolution: import("zod").ZodOptional<import("zod").ZodString>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_transitions">; key: import("zod").ZodString; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_projects">; limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { operation: "list_projects"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "list_projects"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_issue_types">; project: import("zod").ZodString; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"add_comment">; key: import("zod").ZodString; body: import("zod").ZodString; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get_comments">; key: import("zod").ZodString; limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; offset: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>; credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>; }, "strip", import("zod").ZodTypeAny, { key: string; operation: "get_comments"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "get_comments"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>]>; static readonly resultSchema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"search">; success: import("zod").ZodBoolean; issues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; self: import("zod").ZodOptional<import("zod").ZodString>; fields: import("zod").ZodObject<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">>; transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; to: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: import("zod").ZodOptional<import("zod").ZodUnknown>; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; offset: import("zod").ZodOptional<import("zod").ZodNumber>; limit: import("zod").ZodOptional<import("zod").ZodNumber>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get">; success: import("zod").ZodBoolean; issue: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; self: import("zod").ZodOptional<import("zod").ZodString>; fields: import("zod").ZodObject<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{ summary: import("zod").ZodOptional<import("zod").ZodString>; description: import("zod").ZodOptional<import("zod").ZodUnknown>; status: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; duedate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>; parent: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: import("zod").ZodOptional<import("zod").ZodObject<{ comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; }, "strip", import("zod").ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, import("zod").ZodTypeAny, "passthrough">>; transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; to: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: import("zod").ZodOptional<import("zod").ZodUnknown>; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"create">; success: import("zod").ZodBoolean; issue: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; self: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; key: string; self?: string | undefined; }, { id: string; key: string; self?: string | undefined; }>>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"update">; success: import("zod").ZodBoolean; key: import("zod").ZodOptional<import("zod").ZodString>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "update"; success: boolean; error: string; key?: string | undefined; }, { operation: "update"; success: boolean; error: string; key?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"transition">; success: import("zod").ZodBoolean; key: import("zod").ZodOptional<import("zod").ZodString>; new_status: import("zod").ZodOptional<import("zod").ZodString>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_transitions">; success: import("zod").ZodBoolean; transitions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; to: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; statusCategory: import("zod").ZodOptional<import("zod").ZodObject<{ key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_projects">; success: import("zod").ZodBoolean; projects: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; key: import("zod").ZodString; name: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"list_issue_types">; success: import("zod").ZodBoolean; issue_types: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; subtask: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>, "many">>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"add_comment">; success: import("zod").ZodBoolean; comment: import("zod").ZodOptional<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }>, import("zod").ZodObject<{ operation: import("zod").ZodLiteral<"get_comments">; success: import("zod").ZodBoolean; comments: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{ id: import("zod").ZodString; author: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{ accountId: import("zod").ZodString; displayName: import("zod").ZodOptional<import("zod").ZodString>; emailAddress: import("zod").ZodOptional<import("zod").ZodString>; active: import("zod").ZodOptional<import("zod").ZodBoolean>; }, "strip", import("zod").ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: import("zod").ZodOptional<import("zod").ZodString>; renderedBody: import("zod").ZodOptional<import("zod").ZodString>; created: import("zod").ZodOptional<import("zod").ZodString>; updated: import("zod").ZodOptional<import("zod").ZodString>; }, "strip", import("zod").ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: import("zod").ZodOptional<import("zod").ZodNumber>; error: import("zod").ZodString; }, "strip", import("zod").ZodTypeAny, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>]>; static readonly shortDescription = "Jira integration for issue tracking and project management"; static readonly longDescription = "See bubble documentation for details"; static readonly alias = "jira"; constructor(params: T, context?: BubbleContext); testCredential(): Promise<boolean>; private parseCredentials; private makeJiraApiRequest; private resolveAssigneeAccountId; protected performAction(context?: BubbleContext): Promise<Extract<JiraResult, { operation: T['operation']; }>>; private search; private get; private create; private update; private transition; private listTransitions; private listProjects; private listIssueTypes; private addComment; private getComments; protected chooseCredential(): string | undefined; }
|
|
813
|
+
export declare const JiraUserSchema: z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>; export declare const JiraIssueTypeSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>; export declare const JiraStatusSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>; export declare const JiraPrioritySchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>; export declare const JiraProjectSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>; export declare const JiraCommentSchema: z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>; export declare const JiraTransitionSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>; export declare const JiraIssueSchema: z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>; export declare const JiraParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; jql: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "search"; jql: string; limit: number; offset: number; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "search"; jql: string; fields?: string[] | undefined; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; key: z.ZodString; fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; expand: z.ZodOptional<z.ZodArray<z.ZodEnum<["changelog", "comments", "transitions"]>, "many">>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }, { key: string; operation: "get"; fields?: string[] | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; expand?: ("comments" | "transitions" | "changelog")[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; project: z.ZodString; summary: z.ZodString; type: z.ZodDefault<z.ZodOptional<z.ZodString>>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodString>; priority: z.ZodOptional<z.ZodString>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; parent: z.ZodOptional<z.ZodString>; due_date: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { type: string; summary: string; project: string; operation: "create"; description?: string | undefined; priority?: string | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }, { summary: string; project: string; operation: "create"; type?: string | undefined; description?: string | undefined; priority?: string | undefined; assignee?: string | undefined; labels?: string[] | undefined; parent?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; key: z.ZodString; summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodString>; assignee: z.ZodOptional<z.ZodNullable<z.ZodString>>; priority: z.ZodOptional<z.ZodString>; labels: z.ZodOptional<z.ZodObject<{ add: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; remove: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; set: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }, { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; }>>; due_date: z.ZodOptional<z.ZodNullable<z.ZodString>>; comment: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: string | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }, { key: string; operation: "update"; description?: string | undefined; summary?: string | undefined; priority?: string | undefined; assignee?: string | null | undefined; labels?: { set?: string[] | undefined; add?: string[] | undefined; remove?: string[] | undefined; } | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; due_date?: string | null | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; key: z.ZodString; status: z.ZodOptional<z.ZodString>; transition_id: z.ZodOptional<z.ZodString>; comment: z.ZodOptional<z.ZodString>; resolution: z.ZodOptional<z.ZodString>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }, { key: string; operation: "transition"; status?: string | undefined; comment?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; transition_id?: string | undefined; resolution?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; key: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "list_transitions"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { operation: "list_projects"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { operation: "list_projects"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; project: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { project: string; operation: "list_issue_types"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; key: z.ZodString; body: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; body: string; operation: "add_comment"; credentials?: Partial<Record<CredentialType, string>> | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; key: z.ZodString; limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { key: string; operation: "get_comments"; limit: number; offset: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { key: string; operation: "get_comments"; limit?: number | undefined; offset?: number | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; }>]>; export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{ operation: z.ZodLiteral<"search">; success: z.ZodBoolean; issues: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; offset: z.ZodOptional<z.ZodNumber>; limit: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }, { operation: "search"; success: boolean; error: string; issues?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }[] | undefined; total?: number | undefined; limit?: number | undefined; offset?: number | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; fields: z.ZodObject<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ summary: z.ZodOptional<z.ZodString>; description: z.ZodOptional<z.ZodUnknown>; status: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; priority: z.ZodOptional<z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; }, { id: string; name: string; }>>>; assignee: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; reporter: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; issuetype: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>>; project: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>>; labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; duedate: z.ZodOptional<z.ZodNullable<z.ZodString>>; parent: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; key: string; }, { id: string; key: string; }>>; comment: z.ZodOptional<z.ZodObject<{ comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; changelog: z.ZodOptional<z.ZodUnknown>; }, "strip", z.ZodTypeAny, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }, { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }, { operation: "get"; success: boolean; error: string; issue?: { id: string; key: string; fields: { description?: unknown; status?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; created?: string | undefined; updated?: string | undefined; summary?: string | undefined; priority?: { id: string; name: string; } | null | undefined; assignee?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; reporter?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; issuetype?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; } | undefined; project?: { id: string; name: string; key: string; } | undefined; labels?: string[] | undefined; duedate?: string | null | undefined; parent?: { id: string; key: string; } | undefined; comment?: { comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; } | undefined; } & { [k: string]: unknown; }; self?: string | undefined; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; changelog?: unknown; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"create">; success: z.ZodBoolean; issue: z.ZodOptional<z.ZodObject<{ id: z.ZodString; key: z.ZodString; self: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; key: string; self?: string | undefined; }, { id: string; key: string; self?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }, { operation: "create"; success: boolean; error: string; issue?: { id: string; key: string; self?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"update">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "update"; success: boolean; error: string; key?: string | undefined; }, { operation: "update"; success: boolean; error: string; key?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"transition">; success: z.ZodBoolean; key: z.ZodOptional<z.ZodString>; new_status: z.ZodOptional<z.ZodString>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }, { operation: "transition"; success: boolean; error: string; key?: string | undefined; new_status?: string | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_transitions">; success: z.ZodBoolean; transitions: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; to: z.ZodOptional<z.ZodObject<{ id: z.ZodString; name: z.ZodString; statusCategory: z.ZodOptional<z.ZodObject<{ key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; key: string; }, { name: string; key: string; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }, { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; }>>; }, "strip", z.ZodTypeAny, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }, { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }, { operation: "list_transitions"; success: boolean; error: string; transitions?: { id: string; name: string; to?: { id: string; name: string; statusCategory?: { name: string; key: string; } | undefined; } | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_projects">; success: z.ZodBoolean; projects: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; key: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; name: string; key: string; }, { id: string; name: string; key: string; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }, { operation: "list_projects"; success: boolean; error: string; total?: number | undefined; projects?: { id: string; name: string; key: string; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"list_issue_types">; success: z.ZodBoolean; issue_types: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; name: z.ZodString; description: z.ZodOptional<z.ZodString>; subtask: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }, { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }>, "many">>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }, { operation: "list_issue_types"; success: boolean; error: string; issue_types?: { id: string; name: string; description?: string | undefined; subtask?: boolean | undefined; }[] | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"add_comment">; success: z.ZodBoolean; comment: z.ZodOptional<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }, { operation: "add_comment"; success: boolean; error: string; comment?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; } | undefined; }>, z.ZodObject<{ operation: z.ZodLiteral<"get_comments">; success: z.ZodBoolean; comments: z.ZodOptional<z.ZodArray<z.ZodObject<{ id: z.ZodString; author: z.ZodOptional<z.ZodNullable<z.ZodObject<{ accountId: z.ZodString; displayName: z.ZodOptional<z.ZodString>; emailAddress: z.ZodOptional<z.ZodString>; active: z.ZodOptional<z.ZodBoolean>; }, "strip", z.ZodTypeAny, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }, { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; }>>>; body: z.ZodOptional<z.ZodString>; renderedBody: z.ZodOptional<z.ZodString>; created: z.ZodOptional<z.ZodString>; updated: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }, { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }>, "many">>; total: z.ZodOptional<z.ZodNumber>; error: z.ZodString; }, "strip", z.ZodTypeAny, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }, { operation: "get_comments"; success: boolean; error: string; comments?: { id: string; author?: { accountId: string; displayName?: string | undefined; emailAddress?: string | undefined; active?: boolean | undefined; } | null | undefined; body?: string | undefined; renderedBody?: string | undefined; created?: string | undefined; updated?: string | undefined; }[] | undefined; total?: number | undefined; }>]>; export type JiraParams = z.output<typeof JiraParamsSchema>; export type JiraParamsInput = z.input<typeof JiraParamsSchema>; export type JiraResult = z.output<typeof JiraResultSchema>; export type JiraSearchParams = Extract<JiraParams, { operation: 'search'; }>; export type JiraGetParams = Extract<JiraParams, { operation: 'get'; }>; export type JiraCreateParams = Extract<JiraParams, { operation: 'create'; }>; export type JiraUpdateParams = Extract<JiraParams, { operation: 'update'; }>; export type JiraTransitionParams = Extract<JiraParams, { operation: 'transition'; }>; export type JiraListTransitionsParams = Extract<JiraParams, { operation: 'list_transitions'; }>; export type JiraListProjectsParams = Extract<JiraParams, { operation: 'list_projects'; }>; export type JiraListIssueTypesParams = Extract<JiraParams, { operation: 'list_issue_types'; }>; export type JiraAddCommentParams = Extract<JiraParams, { operation: 'add_comment'; }>; export type JiraGetCommentsParams = Extract<JiraParams, { operation: 'get_comments'; }>; export type JiraIssue = z.infer<typeof JiraIssueSchema>; interface ADFMark { type: 'strong' | 'em' | 'code' | 'link' | 'strike'; attrs?: { href?: string; title?: string; }; }
|
|
814
814
|
interface ADFTextNode { type: 'text'; text: string; marks?: ADFMark[]; }
|
|
815
815
|
interface ADFInlineNode { type: 'hardBreak'; }
|
|
816
816
|
type ADFInlineContent = ADFTextNode | ADFInlineNode; interface ADFParagraphNode { type: 'paragraph'; content?: ADFInlineContent[]; }
|
|
@@ -882,7 +882,7 @@ export interface IToolBubble<TResult extends BubbleOperationResult = BubbleOpera
|
|
|
882
882
|
export interface IUIBubble extends IBubble { readonly type: 'ui'; template: string; }
|
|
883
883
|
export interface IInfraBubble extends IBubble { readonly type: 'infra'; provider: 'aws' | 'gcp' | 'supabase'; resourceType: string; }
|
|
884
884
|
export type BubbleFlowOperationResult = unknown; export interface BubbleContext { logger?: BubbleLogger; variableId?: number; invocationCallSiteKey?: string; dependencyGraph?: DependencyGraphNode; currentUniqueId?: string; __uniqueIdCounters__?: Record<string, number>; [key: string]: unknown; }
|
|
885
|
-
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; export declare const SqlOperations: z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "CREATE", "WITH", "EXPLAIN"]>; declare const InsForgeDbParamsSchema: z.ZodObject<{ query: z.ZodString; allowedOperations: z.ZodDefault<z.ZodArray<z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "CREATE", "WITH", "EXPLAIN"]>, "many">>; parameters: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>; timeout: z.ZodDefault<z.ZodNumber>; maxRows: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, {
|
|
885
|
+
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; export declare const SqlOperations: z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "CREATE", "WITH", "EXPLAIN"]>; declare const InsForgeDbParamsSchema: z.ZodObject<{ query: z.ZodString; allowedOperations: z.ZodDefault<z.ZodArray<z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "CREATE", "WITH", "EXPLAIN"]>, "many">>; parameters: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>; timeout: z.ZodDefault<z.ZodNumber>; maxRows: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { query: string; timeout: number; allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[]; parameters: unknown[]; maxRows: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { query: string; credentials?: Partial<Record<CredentialType, string>> | undefined; timeout?: number | undefined; allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined; parameters?: unknown[] | undefined; maxRows?: number | undefined; }>; type InsForgeDbParamsInput = z.input<typeof InsForgeDbParamsSchema>;;; type InsForgeDbParams = z.output<typeof InsForgeDbParamsSchema>; declare const InsForgeDbResultSchema: z.ZodObject<{ rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">; rowCount: z.ZodNullable<z.ZodNumber>; command: z.ZodString; executionTime: z.ZodNumber; success: z.ZodBoolean; error: z.ZodString; cleanedJSONString: z.ZodString; }, "strip", z.ZodTypeAny, { success: boolean; error: string; rows: Record<string, unknown>[]; rowCount: number | null; command: string; executionTime: number; cleanedJSONString: string; }, { success: boolean; error: string; rows: Record<string, unknown>[]; rowCount: number | null; command: string; executionTime: number; cleanedJSONString: string; }>; type InsForgeDbResult = z.output<typeof InsForgeDbResultSchema>; export type { InsForgeDbParamsInput }; export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, InsForgeDbResult> { static readonly type: "service"; static readonly service = "insforge"; static readonly authType: "apikey"; static readonly bubbleName = "insforge-db"; static readonly schema: z.ZodObject<{ query: z.ZodString; allowedOperations: z.ZodDefault<z.ZodArray<z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "CREATE", "WITH", "EXPLAIN"]>, "many">>; parameters: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>; timeout: z.ZodDefault<z.ZodNumber>; maxRows: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { query: string; timeout: number; allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[]; parameters: unknown[]; maxRows: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { query: string; credentials?: Partial<Record<CredentialType, string>> | undefined; timeout?: number | undefined; allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined; parameters?: unknown[] | undefined; maxRows?: number | undefined; }>; static readonly resultSchema: z.ZodObject<{ rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">; rowCount: z.ZodNullable<z.ZodNumber>; command: z.ZodString; executionTime: z.ZodNumber; success: z.ZodBoolean; error: z.ZodString; cleanedJSONString: z.ZodString; }, "strip", z.ZodTypeAny, { success: boolean; error: string; rows: Record<string, unknown>[]; rowCount: number | null; command: string; executionTime: number; cleanedJSONString: string; }, { success: boolean; error: string; rows: Record<string, unknown>[]; rowCount: number | null; command: string; executionTime: number; cleanedJSONString: string; }>; static readonly shortDescription = "InsForge is the backend built for AI-assisted development. Connect InsForge with any agent. Add authentication, database, storage, functions, and AI integrations to your app in seconds."; static readonly longDescription = "\n Authentication - Complete user management system\n Database - Flexible data storage and retrieval\n Storage - File management and organization\n AI Integration - Chat completions and image generation (OpenAI-compatible)\n Serverless Functions - Scalable compute power\n Site Deployment (coming soon) - Easy application deployment\n "; static readonly alias = "insforge"; constructor(params?: InsForgeDbParamsInput, context?: BubbleContext); testCredential(): Promise<boolean>; protected chooseCredential(): string | undefined; private getCredentials; private validateSqlOperation; protected performAction(context?: BubbleContext): Promise<InsForgeDbResult>; }
|
|
886
886
|
export declare abstract class BaseBubble<TParams = unknown, TResult extends BubbleOperationResult = BubbleOperationResult> implements IBubble<TResult> { readonly name: string; readonly schema: z.ZodObject<z.ZodRawShape>; readonly resultSchema: z.ZodObject<z.ZodRawShape>; readonly shortDescription: string; readonly longDescription: string; readonly alias?: string; abstract readonly type: 'service' | 'workflow' | 'tool' | 'ui' | 'infra'; protected readonly params: TParams; protected context?: BubbleContext; previousResult: BubbleResult<BubbleOperationResult> | undefined; protected readonly instanceId?: string; constructor(params: unknown, context?: BubbleContext, instanceId?: string); private computeChildContext; saveResult<R extends BubbleOperationResult>(result: BubbleResult<R>): void; clearSavedResult(): void; toJSON(): Record<string, unknown>; action(): Promise<BubbleResult<TResult>>; generateMockResult(): BubbleResult<TResult>; generateMockResultWithSeed(seed: number): BubbleResult<TResult>; protected abstract performAction(context?: BubbleContext): Promise<TResult>; }
|
|
887
887
|
export declare abstract class ServiceBubble<TParams extends ServiceBubbleParams = ServiceBubbleParams, TResult extends BubbleOperationResult = BubbleOperationResult> extends BaseBubble<TParams, TResult> { readonly type: "service"; authType?: 'oauth' | 'apikey' | 'none' | 'connection-string'; constructor(params: unknown, context?: BubbleContext, instanceId?: string); abstract testCredential(): Promise<boolean>; protected abstract chooseCredential(): string | undefined; getCredentialMetadata(): Promise<DatabaseMetadata | undefined>; get currentParams(): Omit<TParams, 'credentials'>; setParam<K extends keyof TParams>(paramName: K, paramValue: TParams[K]): void; get currentContext(): BubbleContext | undefined; }
|
|
888
888
|
export declare class BubbleError extends Error { readonly variableId?: number; readonly bubbleName?: string; constructor(message: string, options?: { variableId?: number; bubbleName?: string; cause?: Error; }); }
|
|
@@ -901,7 +901,7 @@ export interface IToolBubble<TResult extends BubbleOperationResult = BubbleOpera
|
|
|
901
901
|
export interface IUIBubble extends IBubble { readonly type: 'ui'; template: string; }
|
|
902
902
|
export interface IInfraBubble extends IBubble { readonly type: 'infra'; provider: 'aws' | 'gcp' | 'supabase'; resourceType: string; }
|
|
903
903
|
export type BubbleFlowOperationResult = unknown; export interface BubbleContext { logger?: BubbleLogger; variableId?: number; invocationCallSiteKey?: string; dependencyGraph?: DependencyGraphNode; currentUniqueId?: string; __uniqueIdCounters__?: Record<string, number>; [key: string]: unknown; }
|
|
904
|
-
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; export declare const SqlOperations: z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "CREATE", "WITH", "EXPLAIN"]>; declare const InsForgeDbParamsSchema: z.ZodObject<{ query: z.ZodString; allowedOperations: z.ZodDefault<z.ZodArray<z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "CREATE", "WITH", "EXPLAIN"]>, "many">>; parameters: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>; timeout: z.ZodDefault<z.ZodNumber>; maxRows: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, {
|
|
904
|
+
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; export declare const SqlOperations: z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "CREATE", "WITH", "EXPLAIN"]>; declare const InsForgeDbParamsSchema: z.ZodObject<{ query: z.ZodString; allowedOperations: z.ZodDefault<z.ZodArray<z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "CREATE", "WITH", "EXPLAIN"]>, "many">>; parameters: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>; timeout: z.ZodDefault<z.ZodNumber>; maxRows: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { query: string; timeout: number; allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[]; parameters: unknown[]; maxRows: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { query: string; credentials?: Partial<Record<CredentialType, string>> | undefined; timeout?: number | undefined; allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined; parameters?: unknown[] | undefined; maxRows?: number | undefined; }>; type InsForgeDbParamsInput = z.input<typeof InsForgeDbParamsSchema>; type InsForgeDbParams = z.output<typeof InsForgeDbParamsSchema>; declare const InsForgeDbResultSchema: z.ZodObject<{ rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">; rowCount: z.ZodNullable<z.ZodNumber>; command: z.ZodString; executionTime: z.ZodNumber; success: z.ZodBoolean; error: z.ZodString; cleanedJSONString: z.ZodString; }, "strip", z.ZodTypeAny, { success: boolean; error: string; rows: Record<string, unknown>[]; rowCount: number | null; command: string; executionTime: number; cleanedJSONString: string; }, { success: boolean; error: string; rows: Record<string, unknown>[]; rowCount: number | null; command: string; executionTime: number; cleanedJSONString: string; }>; type InsForgeDbResult = z.output<typeof InsForgeDbResultSchema>; export type { InsForgeDbParamsInput }; export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, InsForgeDbResult> { static readonly type: "service"; static readonly service = "insforge"; static readonly authType: "apikey"; static readonly bubbleName = "insforge-db"; static readonly schema: z.ZodObject<{ query: z.ZodString; allowedOperations: z.ZodDefault<z.ZodArray<z.ZodEnum<["SELECT", "INSERT", "UPDATE", "DELETE", "CREATE", "WITH", "EXPLAIN"]>, "many">>; parameters: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>>; timeout: z.ZodDefault<z.ZodNumber>; maxRows: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { query: string; timeout: number; allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[]; parameters: unknown[]; maxRows: number; credentials?: Partial<Record<CredentialType, string>> | undefined; }, { query: string; credentials?: Partial<Record<CredentialType, string>> | undefined; timeout?: number | undefined; allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined; parameters?: unknown[] | undefined; maxRows?: number | undefined; }>; static readonly resultSchema: z.ZodObject<{ rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">; rowCount: z.ZodNullable<z.ZodNumber>; command: z.ZodString; executionTime: z.ZodNumber; success: z.ZodBoolean; error: z.ZodString; cleanedJSONString: z.ZodString; }, "strip", z.ZodTypeAny, { success: boolean; error: string; rows: Record<string, unknown>[]; rowCount: number | null; command: string; executionTime: number; cleanedJSONString: string; }, { success: boolean; error: string; rows: Record<string, unknown>[]; rowCount: number | null; command: string; executionTime: number; cleanedJSONString: string; }>; static readonly shortDescription = "InsForge is the backend built for AI-assisted development. Connect InsForge with any agent. Add authentication, database, storage, functions, and AI integrations to your app in seconds."; static readonly longDescription = "\n Authentication - Complete user management system\n Database - Flexible data storage and retrieval\n Storage - File management and organization\n AI Integration - Chat completions and image generation (OpenAI-compatible)\n Serverless Functions - Scalable compute power\n Site Deployment (coming soon) - Easy application deployment\n "; static readonly alias = "insforge"; constructor(params?: InsForgeDbParamsInput, context?: BubbleContext); testCredential(): Promise<boolean>; protected chooseCredential(): string | undefined; private getCredentials; private validateSqlOperation; protected performAction(context?: BubbleContext): Promise<InsForgeDbResult>; }
|
|
905
905
|
export declare abstract class BaseBubble<TParams = unknown, TResult extends BubbleOperationResult = BubbleOperationResult> implements IBubble<TResult> { readonly name: string; readonly schema: z.ZodObject<z.ZodRawShape>; readonly resultSchema: z.ZodObject<z.ZodRawShape>; readonly shortDescription: string; readonly longDescription: string; readonly alias?: string; abstract readonly type: 'service' | 'workflow' | 'tool' | 'ui' | 'infra'; protected readonly params: TParams; protected context?: BubbleContext; previousResult: BubbleResult<BubbleOperationResult> | undefined; protected readonly instanceId?: string; constructor(params: unknown, context?: BubbleContext, instanceId?: string); private computeChildContext; saveResult<R extends BubbleOperationResult>(result: BubbleResult<R>): void; clearSavedResult(): void; toJSON(): Record<string, unknown>; action(): Promise<BubbleResult<TResult>>; generateMockResult(): BubbleResult<TResult>; generateMockResultWithSeed(seed: number): BubbleResult<TResult>; protected abstract performAction(context?: BubbleContext): Promise<TResult>; }
|
|
906
906
|
export declare abstract class ServiceBubble<TParams extends ServiceBubbleParams = ServiceBubbleParams, TResult extends BubbleOperationResult = BubbleOperationResult> extends BaseBubble<TParams, TResult> { readonly type: "service"; authType?: 'oauth' | 'apikey' | 'none' | 'connection-string'; constructor(params: unknown, context?: BubbleContext, instanceId?: string); abstract testCredential(): Promise<boolean>; protected abstract chooseCredential(): string | undefined; getCredentialMetadata(): Promise<DatabaseMetadata | undefined>; get currentParams(): Omit<TParams, 'credentials'>; setParam<K extends keyof TParams>(paramName: K, paramValue: TParams[K]): void; get currentContext(): BubbleContext | undefined; }
|
|
907
907
|
export declare class BubbleError extends Error { readonly variableId?: number; readonly bubbleName?: string; constructor(message: string, options?: { variableId?: number; bubbleName?: string; cause?: Error; }); }
|
|
@@ -1022,7 +1022,7 @@ export interface IToolBubble<TResult extends BubbleOperationResult = BubbleOpera
|
|
|
1022
1022
|
export interface IUIBubble extends IBubble { readonly type: 'ui'; template: string; }
|
|
1023
1023
|
export interface IInfraBubble extends IBubble { readonly type: 'infra'; provider: 'aws' | 'gcp' | 'supabase'; resourceType: string; }
|
|
1024
1024
|
export type BubbleFlowOperationResult = unknown; export interface BubbleContext { logger?: BubbleLogger; variableId?: number; invocationCallSiteKey?: string; dependencyGraph?: DependencyGraphNode; currentUniqueId?: string; __uniqueIdCounters__?: Record<string, number>; [key: string]: unknown; }
|
|
1025
|
-
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; declare const SlackDataAssistantParamsSchema: z.ZodObject<{ slackChannel: z.ZodString; slackThreadTs: z.ZodOptional<z.ZodString>; userQuestion: z.ZodString; userName: z.ZodOptional<z.ZodString>; name: z.ZodDefault<z.ZodString>; dataSourceType: z.ZodDefault<z.ZodEnum<["postgresql", "mysql", "sqlite", "mariadb", "mssql"]>>; databaseUrl: z.ZodOptional<z.ZodString>; ignoreSSLErrors: z.ZodDefault<z.ZodBoolean>; aiModel: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/x-ai/grok-4.1-fast", "openrouter/openai/gpt-oss-120b", "openrouter/deepseek/deepseek-chat-v3.1"]>>; temperature: z.ZodDefault<z.ZodNumber>; verbosity: z.ZodDefault<z.ZodEnum<["1", "2", "3", "4", "5"]>>; technicality: z.ZodDefault<z.ZodEnum<["1", "2", "3", "4", "5"]>>; includeQuery: z.ZodDefault<z.ZodBoolean>; includeExplanation: z.ZodDefault<z.ZodBoolean>; injectedMetadata: z.ZodOptional<z.ZodObject<{ tables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>; tableNotes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; }, { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; }>>; additionalContext: z.ZodOptional<z.ZodString>; maxQueries: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { name: string; temperature: number; verbosity: "1" | "2" | "3" | "4" | "5"; technicality: "1" | "2" | "3" | "4" | "5"; includeQuery: boolean; includeExplanation: boolean; dataSourceType: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb"; ignoreSSLErrors: boolean; aiModel: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1"; slackChannel: string; userQuestion: string; maxQueries: number; credentials?: Partial<Record<CredentialType, string>> | undefined; additionalContext?: string | undefined; userName?: string | undefined; injectedMetadata?: { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; } | undefined; slackThreadTs?: string | undefined; databaseUrl?: string | undefined; }, { slackChannel: string; userQuestion: string; name?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; temperature?: number | undefined; verbosity?: "1" | "2" | "3" | "4" | "5" | undefined; technicality?: "1" | "2" | "3" | "4" | "5" | undefined; includeQuery?: boolean | undefined; includeExplanation?: boolean | undefined; additionalContext?: string | undefined; userName?: string | undefined; dataSourceType?: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb" | undefined; ignoreSSLErrors?: boolean | undefined; injectedMetadata?: { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; } | undefined; aiModel?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1" | undefined; slackThreadTs?: string | undefined; databaseUrl?: string | undefined; maxQueries?: number | undefined; }>; declare const SlackDataAssistantResultSchema: z.ZodObject<{ success: z.ZodBoolean; error: z.ZodString; query: z.ZodOptional<z.ZodString>; queryExplanation: z.ZodOptional<z.ZodString>; queryResults: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>; formattedResponse: z.ZodOptional<z.ZodString>; slackBlocks: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>; slackMessageTs: z.ZodOptional<z.ZodString>; isDataQuestion: z.ZodOptional<z.ZodBoolean>; metadata: z.ZodOptional<z.ZodObject<{ executionTime: z.ZodNumber; rowCount: z.ZodOptional<z.ZodNumber>; wordCount: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; }, { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; }>>; }, "strip", z.ZodTypeAny, { success: boolean; error: string; metadata?: { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; } | undefined; query?: string | undefined; queryExplanation?: string | undefined; queryResults?: Record<string, unknown>[] | undefined; formattedResponse?: string | undefined; slackBlocks?: unknown[] | undefined; slackMessageTs?: string | undefined; isDataQuestion?: boolean | undefined; }, { success: boolean; error: string; metadata?: { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; } | undefined; query?: string | undefined; queryExplanation?: string | undefined; queryResults?: Record<string, unknown>[] | undefined; formattedResponse?: string | undefined; slackBlocks?: unknown[] | undefined; slackMessageTs?: string | undefined; isDataQuestion?: boolean | undefined; }>; type SlackDataAssistantParams = z.input<typeof SlackDataAssistantParamsSchema>;; type SlackDataAssistantResult = z.output<typeof SlackDataAssistantResultSchema>; export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackDataAssistantParams, SlackDataAssistantResult> { static readonly type: "workflow"; static readonly service = "slack-data-assistant"; static readonly bubbleName = "slack-data-assistant"; static readonly schema: z.ZodObject<{ slackChannel: z.ZodString; slackThreadTs: z.ZodOptional<z.ZodString>; userQuestion: z.ZodString; userName: z.ZodOptional<z.ZodString>; name: z.ZodDefault<z.ZodString>; dataSourceType: z.ZodDefault<z.ZodEnum<["postgresql", "mysql", "sqlite", "mariadb", "mssql"]>>; databaseUrl: z.ZodOptional<z.ZodString>; ignoreSSLErrors: z.ZodDefault<z.ZodBoolean>; aiModel: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/x-ai/grok-4.1-fast", "openrouter/openai/gpt-oss-120b", "openrouter/deepseek/deepseek-chat-v3.1"]>>; temperature: z.ZodDefault<z.ZodNumber>; verbosity: z.ZodDefault<z.ZodEnum<["1", "2", "3", "4", "5"]>>; technicality: z.ZodDefault<z.ZodEnum<["1", "2", "3", "4", "5"]>>; includeQuery: z.ZodDefault<z.ZodBoolean>; includeExplanation: z.ZodDefault<z.ZodBoolean>; injectedMetadata: z.ZodOptional<z.ZodObject<{ tables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>; tableNotes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; }, { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; }>>; additionalContext: z.ZodOptional<z.ZodString>; maxQueries: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { name: string; temperature: number; verbosity: "1" | "2" | "3" | "4" | "5"; technicality: "1" | "2" | "3" | "4" | "5"; includeQuery: boolean; includeExplanation: boolean; dataSourceType: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb"; ignoreSSLErrors: boolean; aiModel: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1"; slackChannel: string; userQuestion: string; maxQueries: number; credentials?: Partial<Record<CredentialType, string>> | undefined; additionalContext?: string | undefined; userName?: string | undefined; injectedMetadata?: { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; } | undefined; slackThreadTs?: string | undefined; databaseUrl?: string | undefined; }, { slackChannel: string; userQuestion: string; name?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; temperature?: number | undefined; verbosity?: "1" | "2" | "3" | "4" | "5" | undefined; technicality?: "1" | "2" | "3" | "4" | "5" | undefined; includeQuery?: boolean | undefined; includeExplanation?: boolean | undefined; additionalContext?: string | undefined; userName?: string | undefined; dataSourceType?: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb" | undefined; ignoreSSLErrors?: boolean | undefined; injectedMetadata?: { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; } | undefined; aiModel?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1" | undefined; slackThreadTs?: string | undefined; databaseUrl?: string | undefined; maxQueries?: number | undefined; }>; static readonly resultSchema: z.ZodObject<{ success: z.ZodBoolean; error: z.ZodString; query: z.ZodOptional<z.ZodString>; queryExplanation: z.ZodOptional<z.ZodString>; queryResults: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>; formattedResponse: z.ZodOptional<z.ZodString>; slackBlocks: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>; slackMessageTs: z.ZodOptional<z.ZodString>; isDataQuestion: z.ZodOptional<z.ZodBoolean>; metadata: z.ZodOptional<z.ZodObject<{ executionTime: z.ZodNumber; rowCount: z.ZodOptional<z.ZodNumber>; wordCount: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; }, { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; }>>; }, "strip", z.ZodTypeAny, { success: boolean; error: string; metadata?: { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; } | undefined; query?: string | undefined; queryExplanation?: string | undefined; queryResults?: Record<string, unknown>[] | undefined; formattedResponse?: string | undefined; slackBlocks?: unknown[] | undefined; slackMessageTs?: string | undefined; isDataQuestion?: boolean | undefined; }, { success: boolean; error: string; metadata?: { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; } | undefined; query?: string | undefined; queryExplanation?: string | undefined; queryResults?: Record<string, unknown>[] | undefined; formattedResponse?: string | undefined; slackBlocks?: unknown[] | undefined; slackMessageTs?: string | undefined; isDataQuestion?: boolean | undefined; }>; static readonly shortDescription = "AI-powered Slack bot that answers data questions by querying databases"; static readonly longDescription = "See bubble documentation for details"; static readonly alias = "slack-data-bot"; constructor(params: SlackDataAssistantParams, context?: BubbleContext); private extractFirstName; private cleanBotName; private cleanUsername; private generateReadableNameFromUserId; protected performAction(): Promise<SlackDataAssistantResult>; private aggregateQueryResults; }
|
|
1025
|
+
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; declare const SlackDataAssistantParamsSchema: z.ZodObject<{ slackChannel: z.ZodString; slackThreadTs: z.ZodOptional<z.ZodString>; userQuestion: z.ZodString; userName: z.ZodOptional<z.ZodString>; name: z.ZodDefault<z.ZodString>; dataSourceType: z.ZodDefault<z.ZodEnum<["postgresql", "mysql", "sqlite", "mariadb", "mssql"]>>; databaseUrl: z.ZodOptional<z.ZodString>; ignoreSSLErrors: z.ZodDefault<z.ZodBoolean>; aiModel: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/x-ai/grok-4.1-fast", "openrouter/openai/gpt-oss-120b", "openrouter/deepseek/deepseek-chat-v3.1"]>>; temperature: z.ZodDefault<z.ZodNumber>; verbosity: z.ZodDefault<z.ZodEnum<["1", "2", "3", "4", "5"]>>; technicality: z.ZodDefault<z.ZodEnum<["1", "2", "3", "4", "5"]>>; includeQuery: z.ZodDefault<z.ZodBoolean>; includeExplanation: z.ZodDefault<z.ZodBoolean>; injectedMetadata: z.ZodOptional<z.ZodObject<{ tables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>; tableNotes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; }, { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; }>>; additionalContext: z.ZodOptional<z.ZodString>; maxQueries: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { name: string; temperature: number; verbosity: "1" | "2" | "3" | "4" | "5"; technicality: "1" | "2" | "3" | "4" | "5"; includeQuery: boolean; includeExplanation: boolean; dataSourceType: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb"; ignoreSSLErrors: boolean; aiModel: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1"; slackChannel: string; userQuestion: string; maxQueries: number; credentials?: Partial<Record<CredentialType, string>> | undefined; additionalContext?: string | undefined; userName?: string | undefined; injectedMetadata?: { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; } | undefined; slackThreadTs?: string | undefined; databaseUrl?: string | undefined; }, { slackChannel: string; userQuestion: string; name?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; temperature?: number | undefined; verbosity?: "1" | "2" | "3" | "4" | "5" | undefined; technicality?: "1" | "2" | "3" | "4" | "5" | undefined; includeQuery?: boolean | undefined; includeExplanation?: boolean | undefined; additionalContext?: string | undefined; userName?: string | undefined; dataSourceType?: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb" | undefined; ignoreSSLErrors?: boolean | undefined; injectedMetadata?: { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; } | undefined; aiModel?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1" | undefined; slackThreadTs?: string | undefined; databaseUrl?: string | undefined; maxQueries?: number | undefined; }>; declare const SlackDataAssistantResultSchema: z.ZodObject<{ success: z.ZodBoolean; error: z.ZodString; query: z.ZodOptional<z.ZodString>; queryExplanation: z.ZodOptional<z.ZodString>; queryResults: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>; formattedResponse: z.ZodOptional<z.ZodString>; slackBlocks: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>; slackMessageTs: z.ZodOptional<z.ZodString>; isDataQuestion: z.ZodOptional<z.ZodBoolean>; metadata: z.ZodOptional<z.ZodObject<{ executionTime: z.ZodNumber; rowCount: z.ZodOptional<z.ZodNumber>; wordCount: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; }, { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; }>>; }, "strip", z.ZodTypeAny, { success: boolean; error: string; query?: string | undefined; metadata?: { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; } | undefined; queryExplanation?: string | undefined; queryResults?: Record<string, unknown>[] | undefined; formattedResponse?: string | undefined; slackBlocks?: unknown[] | undefined; slackMessageTs?: string | undefined; isDataQuestion?: boolean | undefined; }, { success: boolean; error: string; query?: string | undefined; metadata?: { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; } | undefined; queryExplanation?: string | undefined; queryResults?: Record<string, unknown>[] | undefined; formattedResponse?: string | undefined; slackBlocks?: unknown[] | undefined; slackMessageTs?: string | undefined; isDataQuestion?: boolean | undefined; }>; type SlackDataAssistantParams = z.input<typeof SlackDataAssistantParamsSchema>;; type SlackDataAssistantResult = z.output<typeof SlackDataAssistantResultSchema>; export declare class SlackDataAssistantWorkflow extends WorkflowBubble<SlackDataAssistantParams, SlackDataAssistantResult> { static readonly type: "workflow"; static readonly service = "slack-data-assistant"; static readonly bubbleName = "slack-data-assistant"; static readonly schema: z.ZodObject<{ slackChannel: z.ZodString; slackThreadTs: z.ZodOptional<z.ZodString>; userQuestion: z.ZodString; userName: z.ZodOptional<z.ZodString>; name: z.ZodDefault<z.ZodString>; dataSourceType: z.ZodDefault<z.ZodEnum<["postgresql", "mysql", "sqlite", "mariadb", "mssql"]>>; databaseUrl: z.ZodOptional<z.ZodString>; ignoreSSLErrors: z.ZodDefault<z.ZodBoolean>; aiModel: z.ZodDefault<z.ZodEnum<["openai/gpt-5", "openai/gpt-5-mini", "openai/gpt-5.1", "openai/gpt-5.2", "google/gemini-2.5-pro", "google/gemini-2.5-flash", "google/gemini-2.5-flash-lite", "google/gemini-2.5-flash-image-preview", "google/gemini-3-pro-preview", "google/gemini-3-pro-image-preview", "google/gemini-3-flash-preview", "anthropic/claude-sonnet-4-5", "anthropic/claude-opus-4-5", "anthropic/claude-haiku-4-5", "openrouter/x-ai/grok-code-fast-1", "openrouter/z-ai/glm-4.6", "openrouter/anthropic/claude-sonnet-4.5", "openrouter/google/gemini-3-pro-preview", "openrouter/morph/morph-v3-large", "openrouter/x-ai/grok-4.1-fast", "openrouter/openai/gpt-oss-120b", "openrouter/deepseek/deepseek-chat-v3.1"]>>; temperature: z.ZodDefault<z.ZodNumber>; verbosity: z.ZodDefault<z.ZodEnum<["1", "2", "3", "4", "5"]>>; technicality: z.ZodDefault<z.ZodEnum<["1", "2", "3", "4", "5"]>>; includeQuery: z.ZodDefault<z.ZodBoolean>; includeExplanation: z.ZodDefault<z.ZodBoolean>; injectedMetadata: z.ZodOptional<z.ZodObject<{ tables: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>; tableNotes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; rules: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; }, "strip", z.ZodTypeAny, { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; }, { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; }>>; additionalContext: z.ZodOptional<z.ZodString>; maxQueries: z.ZodDefault<z.ZodNumber>; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; }, "strip", z.ZodTypeAny, { name: string; temperature: number; verbosity: "1" | "2" | "3" | "4" | "5"; technicality: "1" | "2" | "3" | "4" | "5"; includeQuery: boolean; includeExplanation: boolean; dataSourceType: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb"; ignoreSSLErrors: boolean; aiModel: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1"; slackChannel: string; userQuestion: string; maxQueries: number; credentials?: Partial<Record<CredentialType, string>> | undefined; additionalContext?: string | undefined; userName?: string | undefined; injectedMetadata?: { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; } | undefined; slackThreadTs?: string | undefined; databaseUrl?: string | undefined; }, { slackChannel: string; userQuestion: string; name?: string | undefined; credentials?: Partial<Record<CredentialType, string>> | undefined; temperature?: number | undefined; verbosity?: "1" | "2" | "3" | "4" | "5" | undefined; technicality?: "1" | "2" | "3" | "4" | "5" | undefined; includeQuery?: boolean | undefined; includeExplanation?: boolean | undefined; additionalContext?: string | undefined; userName?: string | undefined; dataSourceType?: "postgresql" | "mysql" | "sqlite" | "mssql" | "mariadb" | undefined; ignoreSSLErrors?: boolean | undefined; injectedMetadata?: { tables?: Record<string, Record<string, string>> | undefined; tableNotes?: Record<string, string> | undefined; rules?: string[] | undefined; } | undefined; aiModel?: "openai/gpt-5" | "openai/gpt-5-mini" | "openai/gpt-5.1" | "openai/gpt-5.2" | "google/gemini-2.5-pro" | "google/gemini-2.5-flash" | "google/gemini-2.5-flash-lite" | "google/gemini-2.5-flash-image-preview" | "google/gemini-3-pro-preview" | "google/gemini-3-pro-image-preview" | "google/gemini-3-flash-preview" | "anthropic/claude-sonnet-4-5" | "anthropic/claude-opus-4-5" | "anthropic/claude-haiku-4-5" | "openrouter/x-ai/grok-code-fast-1" | "openrouter/z-ai/glm-4.6" | "openrouter/anthropic/claude-sonnet-4.5" | "openrouter/google/gemini-3-pro-preview" | "openrouter/morph/morph-v3-large" | "openrouter/x-ai/grok-4.1-fast" | "openrouter/openai/gpt-oss-120b" | "openrouter/deepseek/deepseek-chat-v3.1" | undefined; slackThreadTs?: string | undefined; databaseUrl?: string | undefined; maxQueries?: number | undefined; }>; static readonly resultSchema: z.ZodObject<{ success: z.ZodBoolean; error: z.ZodString; query: z.ZodOptional<z.ZodString>; queryExplanation: z.ZodOptional<z.ZodString>; queryResults: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>; formattedResponse: z.ZodOptional<z.ZodString>; slackBlocks: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>; slackMessageTs: z.ZodOptional<z.ZodString>; isDataQuestion: z.ZodOptional<z.ZodBoolean>; metadata: z.ZodOptional<z.ZodObject<{ executionTime: z.ZodNumber; rowCount: z.ZodOptional<z.ZodNumber>; wordCount: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; }, { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; }>>; }, "strip", z.ZodTypeAny, { success: boolean; error: string; query?: string | undefined; metadata?: { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; } | undefined; queryExplanation?: string | undefined; queryResults?: Record<string, unknown>[] | undefined; formattedResponse?: string | undefined; slackBlocks?: unknown[] | undefined; slackMessageTs?: string | undefined; isDataQuestion?: boolean | undefined; }, { success: boolean; error: string; query?: string | undefined; metadata?: { executionTime: number; rowCount?: number | undefined; wordCount?: number | undefined; } | undefined; queryExplanation?: string | undefined; queryResults?: Record<string, unknown>[] | undefined; formattedResponse?: string | undefined; slackBlocks?: unknown[] | undefined; slackMessageTs?: string | undefined; isDataQuestion?: boolean | undefined; }>; static readonly shortDescription = "AI-powered Slack bot that answers data questions by querying databases"; static readonly longDescription = "See bubble documentation for details"; static readonly alias = "slack-data-bot"; constructor(params: SlackDataAssistantParams, context?: BubbleContext); private extractFirstName; private cleanBotName; private cleanUsername; private generateReadableNameFromUserId; protected performAction(): Promise<SlackDataAssistantResult>; private aggregateQueryResults; }
|
|
1026
1026
|
export {}; export declare abstract class BaseBubble<TParams = unknown, TResult extends BubbleOperationResult = BubbleOperationResult> implements IBubble<TResult> { readonly name: string; readonly schema: z.ZodObject<z.ZodRawShape>; readonly resultSchema: z.ZodObject<z.ZodRawShape>; readonly shortDescription: string; readonly longDescription: string; readonly alias?: string; abstract readonly type: 'service' | 'workflow' | 'tool' | 'ui' | 'infra'; protected readonly params: TParams; protected context?: BubbleContext; previousResult: BubbleResult<BubbleOperationResult> | undefined; protected readonly instanceId?: string; constructor(params: unknown, context?: BubbleContext, instanceId?: string); private computeChildContext; saveResult<R extends BubbleOperationResult>(result: BubbleResult<R>): void; clearSavedResult(): void; toJSON(): Record<string, unknown>; action(): Promise<BubbleResult<TResult>>; generateMockResult(): BubbleResult<TResult>; generateMockResultWithSeed(seed: number): BubbleResult<TResult>; protected abstract performAction(context?: BubbleContext): Promise<TResult>; }
|
|
1027
1027
|
export declare abstract class WorkflowBubble<TParams extends ServiceBubbleParams = ServiceBubbleParams, TResult extends BubbleOperationResult = BubbleOperationResult> extends BaseBubble<TParams, TResult> implements IWorkflowBubble<TResult> { readonly type: "workflow"; constructor(params: unknown, context?: BubbleContext, instanceId?: string); get currentParams(): TParams; get currentContext(): BubbleContext | undefined; }
|
|
1028
1028
|
export declare class BubbleError extends Error { readonly variableId?: number; readonly bubbleName?: string; constructor(message: string, options?: { variableId?: number; bubbleName?: string; cause?: Error; }); }
|
|
@@ -1178,7 +1178,7 @@ export interface IToolBubble<TResult extends BubbleOperationResult = BubbleOpera
|
|
|
1178
1178
|
export interface IUIBubble extends IBubble { readonly type: 'ui'; template: string; }
|
|
1179
1179
|
export interface IInfraBubble extends IBubble { readonly type: 'infra'; provider: 'aws' | 'gcp' | 'supabase'; resourceType: string; }
|
|
1180
1180
|
export type BubbleFlowOperationResult = unknown; export interface BubbleContext { logger?: BubbleLogger; variableId?: number; invocationCallSiteKey?: string; dependencyGraph?: DependencyGraphNode; currentUniqueId?: string; __uniqueIdCounters__?: Record<string, number>; [key: string]: unknown; }
|
|
1181
|
-
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; declare const SQLQueryToolParamsSchema: z.ZodObject<{ query: z.ZodString; reasoning: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>; }, "strip", z.ZodTypeAny, {
|
|
1181
|
+
export type ServiceBubbleParams<T = unknown> = T & { credentials?: CredentialOptions; retries?: number; }; declare const SQLQueryToolParamsSchema: z.ZodObject<{ query: z.ZodString; reasoning: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>; }, "strip", z.ZodTypeAny, { query: string; reasoning: string; credentials?: Partial<Record<CredentialType, string>> | undefined; config?: Record<string, unknown> | undefined; }, { query: string; reasoning: string; credentials?: Partial<Record<CredentialType, string>> | undefined; config?: Record<string, unknown> | undefined; }>; type SQLQueryToolParamsInput = z.input<typeof SQLQueryToolParamsSchema>;; type SQLQueryToolParams = z.output<typeof SQLQueryToolParamsSchema>; type SQLQueryToolResult = z.output<typeof SQLQueryToolResultSchema>; declare const SQLQueryToolResultSchema: z.ZodObject<{ rows: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>; rowCount: z.ZodNumber; executionTime: z.ZodNumber; fields: z.ZodOptional<z.ZodArray<z.ZodObject<{ name: z.ZodString; dataTypeID: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { name: string; dataTypeID?: number | undefined; }, { name: string; dataTypeID?: number | undefined; }>, "many">>; success: z.ZodBoolean; error: z.ZodString; }, "strip", z.ZodTypeAny, { success: boolean; error: string; rowCount: number; executionTime: number; fields?: { name: string; dataTypeID?: number | undefined; }[] | undefined; rows?: Record<string, unknown>[] | undefined; }, { success: boolean; error: string; rowCount: number; executionTime: number; fields?: { name: string; dataTypeID?: number | undefined; }[] | undefined; rows?: Record<string, unknown>[] | undefined; }>; export declare class SQLQueryTool extends ToolBubble<SQLQueryToolParams, SQLQueryToolResult> { static readonly type: "tool"; static readonly bubbleName = "sql-query-tool"; static readonly schema: z.ZodObject<{ query: z.ZodString; reasoning: z.ZodString; credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>; config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>; }, "strip", z.ZodTypeAny, { query: string; reasoning: string; credentials?: Partial<Record<CredentialType, string>> | undefined; config?: Record<string, unknown> | undefined; }, { query: string; reasoning: string; credentials?: Partial<Record<CredentialType, string>> | undefined; config?: Record<string, unknown> | undefined; }>; static readonly resultSchema: z.ZodObject<{ rows: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>; rowCount: z.ZodNumber; executionTime: z.ZodNumber; fields: z.ZodOptional<z.ZodArray<z.ZodObject<{ name: z.ZodString; dataTypeID: z.ZodOptional<z.ZodNumber>; }, "strip", z.ZodTypeAny, { name: string; dataTypeID?: number | undefined; }, { name: string; dataTypeID?: number | undefined; }>, "many">>; success: z.ZodBoolean; error: z.ZodString; }, "strip", z.ZodTypeAny, { success: boolean; error: string; rowCount: number; executionTime: number; fields?: { name: string; dataTypeID?: number | undefined; }[] | undefined; rows?: Record<string, unknown>[] | undefined; }, { success: boolean; error: string; rowCount: number; executionTime: number; fields?: { name: string; dataTypeID?: number | undefined; }[] | undefined; rows?: Record<string, unknown>[] | undefined; }>; static readonly shortDescription = "Execute read-only SQL queries against PostgreSQL databases for data analysis"; static readonly longDescription = "See bubble documentation for details"; static readonly alias = "sql"; constructor(params: SQLQueryToolParamsInput, context?: BubbleContext); performAction(context?: BubbleContext): Promise<SQLQueryToolResult>; }
|
|
1182
1182
|
export {}; export declare abstract class BaseBubble<TParams = unknown, TResult extends BubbleOperationResult = BubbleOperationResult> implements IBubble<TResult> { readonly name: string; readonly schema: z.ZodObject<z.ZodRawShape>; readonly resultSchema: z.ZodObject<z.ZodRawShape>; readonly shortDescription: string; readonly longDescription: string; readonly alias?: string; abstract readonly type: 'service' | 'workflow' | 'tool' | 'ui' | 'infra'; protected readonly params: TParams; protected context?: BubbleContext; previousResult: BubbleResult<BubbleOperationResult> | undefined; protected readonly instanceId?: string; constructor(params: unknown, context?: BubbleContext, instanceId?: string); private computeChildContext; saveResult<R extends BubbleOperationResult>(result: BubbleResult<R>): void; clearSavedResult(): void; toJSON(): Record<string, unknown>; action(): Promise<BubbleResult<TResult>>; generateMockResult(): BubbleResult<TResult>; generateMockResultWithSeed(seed: number): BubbleResult<TResult>; protected abstract performAction(context?: BubbleContext): Promise<TResult>; }
|
|
1183
1183
|
export interface LangGraphTool { name: string; description: string; schema: z.ZodSchema; func<TResult extends BubbleOperationResult = BubbleOperationResult>(params: unknown): Promise<BubbleResult<TResult>>; }
|
|
1184
1184
|
export declare abstract class ToolBubble<TParams extends ServiceBubbleParams = ServiceBubbleParams, TResult extends BubbleOperationResult = BubbleOperationResult> extends BaseBubble<TParams, TResult> implements IToolBubble<TResult> { readonly type: "tool"; constructor(params: unknown, context?: BubbleContext, instanceId?: string); static toolAgent(credentials?: Partial<Record<CredentialType, string>>, config?: Record<string, unknown>, context?: BubbleContext): LangGraphTool; }
|