import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Embeddings = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type Versions = { id?: string | undefined; fileId?: string | undefined; versionNumber?: number | undefined; s3Key?: string | undefined; size?: string | undefined; commitMessage?: string | undefined; authorId?: string | undefined; createdAt?: Date | undefined; }; export type Comments = { id?: string | undefined; authorId?: string | undefined; content?: string | undefined; startPosition?: number | undefined; endPosition?: number | undefined; resolved?: boolean | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type Sharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type Snapshots = { id?: string | undefined; fileId?: string | undefined; snapshotHash?: string | undefined; content?: string | undefined; authorId?: string | undefined; reason?: string | undefined; createdAt?: Date | undefined; }; export type Files = { id?: string | undefined; name?: string | undefined; size?: string | undefined; s3Key?: string | undefined; s3BucketName?: string | undefined; isDeleted?: boolean | undefined; version?: number | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; deletedAt?: Date | undefined; embeddings?: Embeddings | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; export type Folders = { id?: string | undefined; name?: string | undefined; s3BucketName?: string | undefined; s3FolderPath?: string | undefined; isDeleted?: boolean | undefined; parentFolderId?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; deletedAt?: Date | undefined; files?: Array | undefined; }; export declare const TemplateType: { readonly TemplateTypeUnspecified: "TEMPLATE_TYPE_UNSPECIFIED"; readonly TemplateTypeStandard: "TEMPLATE_TYPE_STANDARD"; readonly TemplateTypeSmart: "TEMPLATE_TYPE_SMART"; readonly TemplateTypeAdaptive: "TEMPLATE_TYPE_ADAPTIVE"; readonly TemplateTypeAiGenerated: "TEMPLATE_TYPE_AI_GENERATED"; }; export type TemplateType = ClosedEnum; export type PutApiLeadScraperMicroserviceApiV1WorkspaceVersions = { id?: string | undefined; templateId?: string | undefined; version?: string | undefined; baseContent?: string | undefined; metadata?: { [k: string]: string; } | undefined; authorId?: string | undefined; changeDescription?: string | undefined; createdAt?: Date | undefined; }; export type Variables = { id?: string | undefined; name?: string | undefined; description?: string | undefined; variableType?: string | undefined; defaultValue?: string | undefined; isRequired?: boolean | undefined; validationRules?: string | undefined; dataSource?: string | undefined; aiExtractionRules?: string | undefined; alternatives?: Array | undefined; templateId?: string | undefined; }; export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceStatus: { readonly DocumentStatusUnspecified: "DOCUMENT_STATUS_UNSPECIFIED"; readonly DocumentStatusDraft: "DOCUMENT_STATUS_DRAFT"; readonly DocumentStatusInReview: "DOCUMENT_STATUS_IN_REVIEW"; readonly DocumentStatusApproved: "DOCUMENT_STATUS_APPROVED"; readonly DocumentStatusRejected: "DOCUMENT_STATUS_REJECTED"; readonly DocumentStatusExpired: "DOCUMENT_STATUS_EXPIRED"; readonly DocumentStatusArchived: "DOCUMENT_STATUS_ARCHIVED"; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceStatus = ClosedEnum; export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesStatus: { readonly SignatureStatusUnspecified: "SIGNATURE_STATUS_UNSPECIFIED"; readonly SignatureStatusPending: "SIGNATURE_STATUS_PENDING"; readonly SignatureStatusSigned: "SIGNATURE_STATUS_SIGNED"; readonly SignatureStatusRejected: "SIGNATURE_STATUS_REJECTED"; readonly SignatureStatusExpired: "SIGNATURE_STATUS_EXPIRED"; readonly SignatureStatusRevoked: "SIGNATURE_STATUS_REVOKED"; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesStatus = ClosedEnum; export type SignatureBlocks = { id?: string | undefined; requestId?: string | undefined; blockType?: string | undefined; pageNumber?: number | undefined; xPosition?: number | undefined; yPosition?: number | undefined; width?: number | undefined; height?: number | undefined; isRequired?: boolean | undefined; signatureData?: string | undefined; signedAt?: Date | undefined; }; export type Workflow = { id?: string | undefined; requestId?: string | undefined; signingOrder?: Array | undefined; currentSigner?: string | undefined; workflowStatus?: string | undefined; parallelSigning?: boolean | undefined; requireAllSignatures?: boolean | undefined; deadline?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type SignatureRequests = { id?: string | undefined; status?: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesStatus | undefined; signerEmail?: string | undefined; signerName?: string | undefined; role?: string | undefined; authenticationMethod?: string | undefined; expiresAt?: Date | undefined; requiresMfa?: boolean | undefined; signatureType?: string | undefined; reminderSchedule?: Array | undefined; documentId?: string | undefined; signatureBlocks?: Array | undefined; workflow?: Workflow | undefined; }; export type AiAssistance = { id?: string | undefined; documentId?: string | undefined; interactionType?: string | undefined; userQuery?: string | undefined; aiResponse?: string | undefined; context?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type Rounds = { id?: string | undefined; historyId?: string | undefined; roundNumber?: number | undefined; proposerId?: string | undefined; proposalContent?: string | undefined; responseContent?: string | undefined; status?: string | undefined; createdAt?: Date | undefined; }; export type Negotiation = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: Date | undefined; lastUpdated?: Date | undefined; }; export type Merges = { id?: string | undefined; branchId?: string | undefined; sourceBranch?: string | undefined; targetBranch?: string | undefined; mergeStatus?: string | undefined; mergeStrategy?: string | undefined; conflicts?: Array | undefined; mergerId?: string | undefined; createdAt?: Date | undefined; completedAt?: Date | undefined; }; export type Policy = { id?: string | undefined; branchId?: string | undefined; requiredApprovers?: Array | undefined; minimumApprovals?: number | undefined; enforceLinearHistory?: boolean | undefined; allowForcePush?: boolean | undefined; protectedPaths?: Array | undefined; mergeRules?: { [k: string]: string; } | undefined; automatedChecks?: Array | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type MergeRequests = { id?: string | undefined; sourceBranchId?: string | undefined; targetBranchId?: string | undefined; title?: string | undefined; description?: string | undefined; authorId?: string | undefined; reviewers?: Array | undefined; status?: string | undefined; labels?: Array | undefined; hasConflicts?: boolean | undefined; automatedCheckResults?: Array | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type Branches = { id?: string | undefined; name?: string | undefined; baseVersionHash?: string | undefined; currentHeadHash?: string | undefined; purpose?: string | undefined; status?: string | undefined; reviewers?: Array | undefined; branchMetadata?: { [k: string]: string; } | undefined; isLocked?: boolean | undefined; lastUpdated?: Date | undefined; merges?: Array | undefined; policy?: Policy | undefined; mergeRequests?: Array | undefined; }; export type Changes = { id?: string | undefined; versionId?: string | undefined; changeType?: string | undefined; contentBefore?: string | undefined; contentAfter?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type Summaries = { id?: string | undefined; versionId?: string | undefined; summaryType?: string | undefined; content?: string | undefined; targetAudience?: string | undefined; keyPoints?: Array | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersions = { id?: string | undefined; versionHash?: string | undefined; parentHash?: string | undefined; commitMessage?: string | undefined; authorId?: string | undefined; branchName?: string | undefined; metadata?: { [k: string]: string; } | undefined; tags?: Array | undefined; isApproved?: boolean | undefined; approvalChain?: string | undefined; createdAt?: Date | undefined; branches?: Array | undefined; changes?: Array | undefined; summaries?: Array | undefined; }; export type Instances = { id?: string | undefined; templateId?: string | undefined; status?: PutApiLeadScraperMicroserviceApiV1WorkspaceStatus | undefined; fieldValues?: { [k: string]: string; } | undefined; signers?: Array | undefined; language?: string | undefined; isCompleted?: boolean | undefined; dueDate?: Date | undefined; generatedContent?: string | undefined; attachments?: Array | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; signatureRequests?: Array | undefined; aiAssistance?: Array | undefined; negotiation?: Negotiation | undefined; versions?: Array | undefined; }; export type Explanations = { id?: string | undefined; templateId?: string | undefined; sectionIdentifier?: string | undefined; explanationText?: string | undefined; complexityLevel?: string | undefined; relatedTerms?: Array | undefined; legalReferences?: Array | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type RiskAssessments = { id?: string | undefined; intelligenceId?: string | undefined; riskType?: string | undefined; riskScore?: number | undefined; assessmentDetails?: string | undefined; mitigationSuggestions?: Array | undefined; assessorId?: string | undefined; createdAt?: Date | undefined; }; export type ComplianceChecks = { id?: string | undefined; intelligenceId?: string | undefined; complianceStandard?: string | undefined; checkResult?: string | undefined; violations?: Array | undefined; remediationSteps?: string | undefined; checkDate?: Date | undefined; }; export type Intelligence = { id?: string | undefined; contractType?: string | undefined; riskScores?: { [k: string]: number; } | undefined; detectedClauses?: { [k: string]: string; } | undefined; keyObligations?: Array | undefined; complianceScores?: { [k: string]: number; } | undefined; jurisdiction?: string | undefined; governingLaws?: Array | undefined; semanticAnalysis?: { [k: string]: string; } | undefined; analysisDate?: Date | undefined; riskAssessments?: Array | undefined; complianceChecks?: Array | undefined; }; export type Templates = { id?: string | undefined; name?: string | undefined; description?: string | undefined; industryType?: string | undefined; documentType?: string | undefined; baseContent?: string | undefined; isAdaptive?: boolean | undefined; metadata?: { [k: string]: string; } | undefined; supportedLanguages?: Array | undefined; requiredDataFields?: Array | undefined; version?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; templateType?: TemplateType | undefined; content?: string | undefined; detectedVariables?: Array | undefined; variableMappings?: { [k: string]: string; } | undefined; isContextAware?: boolean | undefined; supportedContexts?: Array | undefined; formattingRules?: { [k: string]: string; } | undefined; conditionalSections?: Array | undefined; versions?: Array | undefined; variables?: Array | undefined; instances?: Array | undefined; explanations?: Array | undefined; intelligence?: Array | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceSharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type Activities = { id?: string | undefined; activityType?: string | undefined; userId?: string | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type Compliance = { id?: string | undefined; complianceType?: string | undefined; status?: string | undefined; certificationId?: string | undefined; validUntil?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export declare const Category: { readonly AppCategoryUnspecified: "APP_CATEGORY_UNSPECIFIED"; readonly AppCategoryContractAutomation: "APP_CATEGORY_CONTRACT_AUTOMATION"; readonly AppCategoryContractAnalysis: "APP_CATEGORY_CONTRACT_ANALYSIS"; readonly AppCategoryIntegration: "APP_CATEGORY_INTEGRATION"; readonly AppCategoryAiPowered: "APP_CATEGORY_AI_POWERED"; readonly AppCategoryWorkflow: "APP_CATEGORY_WORKFLOW"; readonly AppCategoryCompliance: "APP_CATEGORY_COMPLIANCE"; }; export type Category = ClosedEnum; export declare const PricingModel: { readonly PricingModelUnspecified: "PRICING_MODEL_UNSPECIFIED"; readonly PricingModelFree: "PRICING_MODEL_FREE"; readonly PricingModelSubscription: "PRICING_MODEL_SUBSCRIPTION"; readonly PricingModelUsageBased: "PRICING_MODEL_USAGE_BASED"; readonly PricingModelEnterprise: "PRICING_MODEL_ENTERPRISE"; }; export type PricingModel = ClosedEnum; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersions = { id?: string | undefined; appId?: string | undefined; versionNumber?: string | undefined; changelog?: string | undefined; requirements?: { [k: string]: string; } | undefined; isPublic?: boolean | undefined; releaseDate?: Date | undefined; }; export type Installations = { id?: string | undefined; appId?: string | undefined; workspaceId?: string | undefined; versionInstalled?: string | undefined; configuration?: { [k: string]: string; } | undefined; installationStatus?: string | undefined; installedAt?: Date | undefined; lastUsed?: Date | undefined; }; export type Analytics = { id?: string | undefined; appId?: string | undefined; metricName?: string | undefined; metricValue?: number | undefined; dimensions?: { [k: string]: string; } | undefined; recordedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceReviews = { id?: string | undefined; appId?: string | undefined; reviewerId?: string | undefined; rating?: number | undefined; reviewText?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type Info = { id?: string | undefined; appId?: string | undefined; supportedLanguages?: Array | undefined; sdkFeatures?: Array | undefined; testCoverage?: { [k: string]: number; } | undefined; securityScans?: Array | undefined; performanceMetrics?: { [k: string]: string; } | undefined; developmentStatus?: string | undefined; knownIssues?: Array | undefined; roadmapUrl?: string | undefined; lastSecurityAudit?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWebhooks = { id?: string | undefined; appId?: string | undefined; url?: string | undefined; subscribedEvents?: Array | undefined; secretKey?: string | undefined; retryCount?: number | undefined; timeoutSeconds?: number | undefined; isActive?: boolean | undefined; headers?: { [k: string]: string; } | undefined; lastTriggered?: Date | undefined; createdAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspacePermissions = { id?: string | undefined; appId?: string | undefined; scope?: string | undefined; description?: string | undefined; isRequired?: boolean | undefined; accessLevels?: Array | undefined; constraints?: { [k: string]: string; } | undefined; requiresApproval?: boolean | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type InstalledApps = { id?: string | undefined; name?: string | undefined; description?: string | undefined; developerId?: string | undefined; category?: Category | undefined; supportedContractTypes?: Array | undefined; features?: Array | undefined; pricingModel?: PricingModel | undefined; pricingTiers?: { [k: string]: number; } | undefined; supportedIntegrations?: Array | undefined; isVerified?: boolean | undefined; rating?: number | undefined; installationCount?: number | undefined; requiredPermissions?: Array | undefined; metadata?: { [k: string]: string; } | undefined; documentationUrl?: string | undefined; supportEmail?: string | undefined; screenshots?: Array | undefined; privacyPolicyUrl?: string | undefined; termsUrl?: string | undefined; publishedAt?: Date | undefined; lastUpdated?: Date | undefined; versions?: Array | undefined; installations?: Array | undefined; analytics?: Array | undefined; reviews?: Array | undefined; info?: Info | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; export type Workspace = { id?: string | undefined; name?: string | undefined; uniqueIdentifier?: string | undefined; s3BucketName?: string | undefined; s3FolderPath?: string | undefined; storageQuota?: string | undefined; usedStorage?: string | undefined; allowPublicSharing?: boolean | undefined; requireApproval?: boolean | undefined; gdprCompliant?: boolean | undefined; hipaaCompliant?: boolean | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; deletedAt?: Date | undefined; folders?: Array | undefined; templates?: Array | undefined; sharing?: Array | undefined; activities?: Array | undefined; compliance?: Array | undefined; installedApps?: Array | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceRequestBody = { workspace?: Workspace | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersions = { id?: string | undefined; fileId?: string | undefined; versionNumber?: number | undefined; s3Key?: string | undefined; size?: string | undefined; commitMessage?: string | undefined; authorId?: string | undefined; createdAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceComments = { id?: string | undefined; authorId?: string | undefined; content?: string | undefined; startPosition?: number | undefined; endPosition?: number | undefined; resolved?: boolean | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceSnapshots = { id?: string | undefined; fileId?: string | undefined; snapshotHash?: string | undefined; content?: string | undefined; authorId?: string | undefined; reason?: string | undefined; createdAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceFiles = { id?: string | undefined; name?: string | undefined; size?: string | undefined; s3Key?: string | undefined; s3BucketName?: string | undefined; isDeleted?: boolean | undefined; version?: number | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; deletedAt?: Date | undefined; embeddings?: PutApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceFolders = { id?: string | undefined; name?: string | undefined; s3BucketName?: string | undefined; s3FolderPath?: string | undefined; isDeleted?: boolean | undefined; parentFolderId?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; deletedAt?: Date | undefined; files?: Array | undefined; }; export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceTemplateType: { readonly TemplateTypeUnspecified: "TEMPLATE_TYPE_UNSPECIFIED"; readonly TemplateTypeStandard: "TEMPLATE_TYPE_STANDARD"; readonly TemplateTypeSmart: "TEMPLATE_TYPE_SMART"; readonly TemplateTypeAdaptive: "TEMPLATE_TYPE_ADAPTIVE"; readonly TemplateTypeAiGenerated: "TEMPLATE_TYPE_AI_GENERATED"; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceTemplateType = ClosedEnum; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersions = { id?: string | undefined; templateId?: string | undefined; version?: string | undefined; baseContent?: string | undefined; metadata?: { [k: string]: string; } | undefined; authorId?: string | undefined; changeDescription?: string | undefined; createdAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceVariables = { id?: string | undefined; name?: string | undefined; description?: string | undefined; variableType?: string | undefined; defaultValue?: string | undefined; isRequired?: boolean | undefined; validationRules?: string | undefined; dataSource?: string | undefined; aiExtractionRules?: string | undefined; alternatives?: Array | undefined; templateId?: string | undefined; }; export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseStatus: { readonly DocumentStatusUnspecified: "DOCUMENT_STATUS_UNSPECIFIED"; readonly DocumentStatusDraft: "DOCUMENT_STATUS_DRAFT"; readonly DocumentStatusInReview: "DOCUMENT_STATUS_IN_REVIEW"; readonly DocumentStatusApproved: "DOCUMENT_STATUS_APPROVED"; readonly DocumentStatusRejected: "DOCUMENT_STATUS_REJECTED"; readonly DocumentStatusExpired: "DOCUMENT_STATUS_EXPIRED"; readonly DocumentStatusArchived: "DOCUMENT_STATUS_ARCHIVED"; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseStatus = ClosedEnum; export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Status: { readonly SignatureStatusUnspecified: "SIGNATURE_STATUS_UNSPECIFIED"; readonly SignatureStatusPending: "SIGNATURE_STATUS_PENDING"; readonly SignatureStatusSigned: "SIGNATURE_STATUS_SIGNED"; readonly SignatureStatusRejected: "SIGNATURE_STATUS_REJECTED"; readonly SignatureStatusExpired: "SIGNATURE_STATUS_EXPIRED"; readonly SignatureStatusRevoked: "SIGNATURE_STATUS_REVOKED"; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Status = ClosedEnum; export type PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocks = { id?: string | undefined; requestId?: string | undefined; blockType?: string | undefined; pageNumber?: number | undefined; xPosition?: number | undefined; yPosition?: number | undefined; width?: number | undefined; height?: number | undefined; isRequired?: boolean | undefined; signatureData?: string | undefined; signedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkflow = { id?: string | undefined; requestId?: string | undefined; signingOrder?: Array | undefined; currentSigner?: string | undefined; workflowStatus?: string | undefined; parallelSigning?: boolean | undefined; requireAllSignatures?: boolean | undefined; deadline?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequests = { id?: string | undefined; status?: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Status | undefined; signerEmail?: string | undefined; signerName?: string | undefined; role?: string | undefined; authenticationMethod?: string | undefined; expiresAt?: Date | undefined; requiresMfa?: boolean | undefined; signatureType?: string | undefined; reminderSchedule?: Array | undefined; documentId?: string | undefined; signatureBlocks?: Array | undefined; workflow?: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkflow | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceAiAssistance = { id?: string | undefined; documentId?: string | undefined; interactionType?: string | undefined; userQuery?: string | undefined; aiResponse?: string | undefined; context?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceRounds = { id?: string | undefined; historyId?: string | undefined; roundNumber?: number | undefined; proposerId?: string | undefined; proposalContent?: string | undefined; responseContent?: string | undefined; status?: string | undefined; createdAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceNegotiation = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: Date | undefined; lastUpdated?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceMerges = { id?: string | undefined; branchId?: string | undefined; sourceBranch?: string | undefined; targetBranch?: string | undefined; mergeStatus?: string | undefined; mergeStrategy?: string | undefined; conflicts?: Array | undefined; mergerId?: string | undefined; createdAt?: Date | undefined; completedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspacePolicy = { id?: string | undefined; branchId?: string | undefined; requiredApprovers?: Array | undefined; minimumApprovals?: number | undefined; enforceLinearHistory?: boolean | undefined; allowForcePush?: boolean | undefined; protectedPaths?: Array | undefined; mergeRules?: { [k: string]: string; } | undefined; automatedChecks?: Array | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceMergeRequests = { id?: string | undefined; sourceBranchId?: string | undefined; targetBranchId?: string | undefined; title?: string | undefined; description?: string | undefined; authorId?: string | undefined; reviewers?: Array | undefined; status?: string | undefined; labels?: Array | undefined; hasConflicts?: boolean | undefined; automatedCheckResults?: Array | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceBranches = { id?: string | undefined; name?: string | undefined; baseVersionHash?: string | undefined; currentHeadHash?: string | undefined; purpose?: string | undefined; status?: string | undefined; reviewers?: Array | undefined; branchMetadata?: { [k: string]: string; } | undefined; isLocked?: boolean | undefined; lastUpdated?: Date | undefined; merges?: Array | undefined; policy?: PutApiLeadScraperMicroserviceApiV1WorkspacePolicy | undefined; mergeRequests?: Array | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceChanges = { id?: string | undefined; versionId?: string | undefined; changeType?: string | undefined; contentBefore?: string | undefined; contentAfter?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceSummaries = { id?: string | undefined; versionId?: string | undefined; summaryType?: string | undefined; content?: string | undefined; targetAudience?: string | undefined; keyPoints?: Array | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersions = { id?: string | undefined; versionHash?: string | undefined; parentHash?: string | undefined; commitMessage?: string | undefined; authorId?: string | undefined; branchName?: string | undefined; metadata?: { [k: string]: string; } | undefined; tags?: Array | undefined; isApproved?: boolean | undefined; approvalChain?: string | undefined; createdAt?: Date | undefined; branches?: Array | undefined; changes?: Array | undefined; summaries?: Array | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceInstances = { id?: string | undefined; templateId?: string | undefined; status?: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseStatus | undefined; fieldValues?: { [k: string]: string; } | undefined; signers?: Array | undefined; language?: string | undefined; isCompleted?: boolean | undefined; dueDate?: Date | undefined; generatedContent?: string | undefined; attachments?: Array | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; signatureRequests?: Array | undefined; aiAssistance?: Array | undefined; negotiation?: PutApiLeadScraperMicroserviceApiV1WorkspaceNegotiation | undefined; versions?: Array | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceExplanations = { id?: string | undefined; templateId?: string | undefined; sectionIdentifier?: string | undefined; explanationText?: string | undefined; complexityLevel?: string | undefined; relatedTerms?: Array | undefined; legalReferences?: Array | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessments = { id?: string | undefined; intelligenceId?: string | undefined; riskType?: string | undefined; riskScore?: number | undefined; assessmentDetails?: string | undefined; mitigationSuggestions?: Array | undefined; assessorId?: string | undefined; createdAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecks = { id?: string | undefined; intelligenceId?: string | undefined; complianceStandard?: string | undefined; checkResult?: string | undefined; violations?: Array | undefined; remediationSteps?: string | undefined; checkDate?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceIntelligence = { id?: string | undefined; contractType?: string | undefined; riskScores?: { [k: string]: number; } | undefined; detectedClauses?: { [k: string]: string; } | undefined; keyObligations?: Array | undefined; complianceScores?: { [k: string]: number; } | undefined; jurisdiction?: string | undefined; governingLaws?: Array | undefined; semanticAnalysis?: { [k: string]: string; } | undefined; analysisDate?: Date | undefined; riskAssessments?: Array | undefined; complianceChecks?: Array | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceTemplates = { id?: string | undefined; name?: string | undefined; description?: string | undefined; industryType?: string | undefined; documentType?: string | undefined; baseContent?: string | undefined; isAdaptive?: boolean | undefined; metadata?: { [k: string]: string; } | undefined; supportedLanguages?: Array | undefined; requiredDataFields?: Array | undefined; version?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; templateType?: PutApiLeadScraperMicroserviceApiV1WorkspaceTemplateType | undefined; content?: string | undefined; detectedVariables?: Array | undefined; variableMappings?: { [k: string]: string; } | undefined; isContextAware?: boolean | undefined; supportedContexts?: Array | undefined; formattingRules?: { [k: string]: string; } | undefined; conditionalSections?: Array | undefined; versions?: Array | undefined; variables?: Array | undefined; instances?: Array | undefined; explanations?: Array | undefined; intelligence?: Array | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceActivities = { id?: string | undefined; activityType?: string | undefined; userId?: string | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceCompliance = { id?: string | undefined; complianceType?: string | undefined; status?: string | undefined; certificationId?: string | undefined; validUntil?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceCategory: { readonly AppCategoryUnspecified: "APP_CATEGORY_UNSPECIFIED"; readonly AppCategoryContractAutomation: "APP_CATEGORY_CONTRACT_AUTOMATION"; readonly AppCategoryContractAnalysis: "APP_CATEGORY_CONTRACT_ANALYSIS"; readonly AppCategoryIntegration: "APP_CATEGORY_INTEGRATION"; readonly AppCategoryAiPowered: "APP_CATEGORY_AI_POWERED"; readonly AppCategoryWorkflow: "APP_CATEGORY_WORKFLOW"; readonly AppCategoryCompliance: "APP_CATEGORY_COMPLIANCE"; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceCategory = ClosedEnum; export declare const PutApiLeadScraperMicroserviceApiV1WorkspacePricingModel: { readonly PricingModelUnspecified: "PRICING_MODEL_UNSPECIFIED"; readonly PricingModelFree: "PRICING_MODEL_FREE"; readonly PricingModelSubscription: "PRICING_MODEL_SUBSCRIPTION"; readonly PricingModelUsageBased: "PRICING_MODEL_USAGE_BASED"; readonly PricingModelEnterprise: "PRICING_MODEL_ENTERPRISE"; }; export type PutApiLeadScraperMicroserviceApiV1WorkspacePricingModel = ClosedEnum; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Versions = { id?: string | undefined; appId?: string | undefined; versionNumber?: string | undefined; changelog?: string | undefined; requirements?: { [k: string]: string; } | undefined; isPublic?: boolean | undefined; releaseDate?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceInstallations = { id?: string | undefined; appId?: string | undefined; workspaceId?: string | undefined; versionInstalled?: string | undefined; configuration?: { [k: string]: string; } | undefined; installationStatus?: string | undefined; installedAt?: Date | undefined; lastUsed?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceAnalytics = { id?: string | undefined; appId?: string | undefined; metricName?: string | undefined; metricValue?: number | undefined; dimensions?: { [k: string]: string; } | undefined; recordedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviews = { id?: string | undefined; appId?: string | undefined; reviewerId?: string | undefined; rating?: number | undefined; reviewText?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceInfo = { id?: string | undefined; appId?: string | undefined; supportedLanguages?: Array | undefined; sdkFeatures?: Array | undefined; testCoverage?: { [k: string]: number; } | undefined; securityScans?: Array | undefined; performanceMetrics?: { [k: string]: string; } | undefined; developmentStatus?: string | undefined; knownIssues?: Array | undefined; roadmapUrl?: string | undefined; lastSecurityAudit?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooks = { id?: string | undefined; appId?: string | undefined; url?: string | undefined; subscribedEvents?: Array | undefined; secretKey?: string | undefined; retryCount?: number | undefined; timeoutSeconds?: number | undefined; isActive?: boolean | undefined; headers?: { [k: string]: string; } | undefined; lastTriggered?: Date | undefined; createdAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissions = { id?: string | undefined; appId?: string | undefined; scope?: string | undefined; description?: string | undefined; isRequired?: boolean | undefined; accessLevels?: Array | undefined; constraints?: { [k: string]: string; } | undefined; requiresApproval?: boolean | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceInstalledApps = { id?: string | undefined; name?: string | undefined; description?: string | undefined; developerId?: string | undefined; category?: PutApiLeadScraperMicroserviceApiV1WorkspaceCategory | undefined; supportedContractTypes?: Array | undefined; features?: Array | undefined; pricingModel?: PutApiLeadScraperMicroserviceApiV1WorkspacePricingModel | undefined; pricingTiers?: { [k: string]: number; } | undefined; supportedIntegrations?: Array | undefined; isVerified?: boolean | undefined; rating?: number | undefined; installationCount?: number | undefined; requiredPermissions?: Array | undefined; metadata?: { [k: string]: string; } | undefined; documentationUrl?: string | undefined; supportEmail?: string | undefined; screenshots?: Array | undefined; privacyPolicyUrl?: string | undefined; termsUrl?: string | undefined; publishedAt?: Date | undefined; lastUpdated?: Date | undefined; versions?: Array | undefined; installations?: Array | undefined; analytics?: Array | undefined; reviews?: Array | undefined; info?: PutApiLeadScraperMicroserviceApiV1WorkspaceInfo | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspace = { id?: string | undefined; name?: string | undefined; uniqueIdentifier?: string | undefined; s3BucketName?: string | undefined; s3FolderPath?: string | undefined; storageQuota?: string | undefined; usedStorage?: string | undefined; allowPublicSharing?: boolean | undefined; requireApproval?: boolean | undefined; gdprCompliant?: boolean | undefined; hipaaCompliant?: boolean | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; deletedAt?: Date | undefined; folders?: Array | undefined; templates?: Array | undefined; sharing?: Array | undefined; activities?: Array | undefined; compliance?: Array | undefined; installedApps?: Array | undefined; }; /** * Updates the details of a specific workspace */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceResponseBody = { workspace?: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspace | undefined; }; /** @internal */ export declare const Embeddings$inboundSchema: z.ZodType; /** @internal */ export type Embeddings$Outbound = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const Embeddings$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Embeddings$ { /** @deprecated use `Embeddings$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Embeddings$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Embeddings$Outbound` instead. */ type Outbound = Embeddings$Outbound; } export declare function embeddingsToJSON(embeddings: Embeddings): string; export declare function embeddingsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Versions$inboundSchema: z.ZodType; /** @internal */ export type Versions$Outbound = { id?: string | undefined; fileId?: string | undefined; versionNumber?: number | undefined; s3Key?: string | undefined; size?: string | undefined; commitMessage?: string | undefined; authorId?: string | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const Versions$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Versions$ { /** @deprecated use `Versions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Versions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Versions$Outbound` instead. */ type Outbound = Versions$Outbound; } export declare function versionsToJSON(versions: Versions): string; export declare function versionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Comments$inboundSchema: z.ZodType; /** @internal */ export type Comments$Outbound = { id?: string | undefined; authorId?: string | undefined; content?: string | undefined; startPosition?: number | undefined; endPosition?: number | undefined; resolved?: boolean | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const Comments$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Comments$ { /** @deprecated use `Comments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Comments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Comments$Outbound` instead. */ type Outbound = Comments$Outbound; } export declare function commentsToJSON(comments: Comments): string; export declare function commentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Sharing$inboundSchema: z.ZodType; /** @internal */ export type Sharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const Sharing$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Sharing$ { /** @deprecated use `Sharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Sharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Sharing$Outbound` instead. */ type Outbound = Sharing$Outbound; } export declare function sharingToJSON(sharing: Sharing): string; export declare function sharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Snapshots$inboundSchema: z.ZodType; /** @internal */ export type Snapshots$Outbound = { id?: string | undefined; fileId?: string | undefined; snapshotHash?: string | undefined; content?: string | undefined; authorId?: string | undefined; reason?: string | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const Snapshots$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Snapshots$ { /** @deprecated use `Snapshots$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Snapshots$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Snapshots$Outbound` instead. */ type Outbound = Snapshots$Outbound; } export declare function snapshotsToJSON(snapshots: Snapshots): string; export declare function snapshotsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Files$inboundSchema: z.ZodType; /** @internal */ export type Files$Outbound = { id?: string | undefined; name?: string | undefined; size?: string | undefined; s3Key?: string | undefined; s3BucketName?: string | undefined; isDeleted?: boolean | undefined; version?: number | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; deletedAt?: string | undefined; embeddings?: Embeddings$Outbound | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; /** @internal */ export declare const Files$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Files$ { /** @deprecated use `Files$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Files$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Files$Outbound` instead. */ type Outbound = Files$Outbound; } export declare function filesToJSON(files: Files): string; export declare function filesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Folders$inboundSchema: z.ZodType; /** @internal */ export type Folders$Outbound = { id?: string | undefined; name?: string | undefined; s3BucketName?: string | undefined; s3FolderPath?: string | undefined; isDeleted?: boolean | undefined; parentFolderId?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; deletedAt?: string | undefined; files?: Array | undefined; }; /** @internal */ export declare const Folders$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Folders$ { /** @deprecated use `Folders$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Folders$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Folders$Outbound` instead. */ type Outbound = Folders$Outbound; } export declare function foldersToJSON(folders: Folders): string; export declare function foldersFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TemplateType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const TemplateType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace TemplateType$ { /** @deprecated use `TemplateType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly TemplateTypeUnspecified: "TEMPLATE_TYPE_UNSPECIFIED"; readonly TemplateTypeStandard: "TEMPLATE_TYPE_STANDARD"; readonly TemplateTypeSmart: "TEMPLATE_TYPE_SMART"; readonly TemplateTypeAdaptive: "TEMPLATE_TYPE_ADAPTIVE"; readonly TemplateTypeAiGenerated: "TEMPLATE_TYPE_AI_GENERATED"; }>; /** @deprecated use `TemplateType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly TemplateTypeUnspecified: "TEMPLATE_TYPE_UNSPECIFIED"; readonly TemplateTypeStandard: "TEMPLATE_TYPE_STANDARD"; readonly TemplateTypeSmart: "TEMPLATE_TYPE_SMART"; readonly TemplateTypeAdaptive: "TEMPLATE_TYPE_ADAPTIVE"; readonly TemplateTypeAiGenerated: "TEMPLATE_TYPE_AI_GENERATED"; }>; } /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceVersions$Outbound = { id?: string | undefined; templateId?: string | undefined; version?: string | undefined; baseContent?: string | undefined; metadata?: { [k: string]: string; } | undefined; authorId?: string | undefined; changeDescription?: string | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceVersions$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceVersions$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceVersions$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceVersions$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceVersionsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceVersions: PutApiLeadScraperMicroserviceApiV1WorkspaceVersions): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Variables$inboundSchema: z.ZodType; /** @internal */ export type Variables$Outbound = { id?: string | undefined; name?: string | undefined; description?: string | undefined; variableType?: string | undefined; defaultValue?: string | undefined; isRequired?: boolean | undefined; validationRules?: string | undefined; dataSource?: string | undefined; aiExtractionRules?: string | undefined; alternatives?: Array | undefined; templateId?: string | undefined; }; /** @internal */ export declare const Variables$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Variables$ { /** @deprecated use `Variables$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Variables$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Variables$Outbound` instead. */ type Outbound = Variables$Outbound; } export declare function variablesToJSON(variables: Variables): string; export declare function variablesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceStatus$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly DocumentStatusUnspecified: "DOCUMENT_STATUS_UNSPECIFIED"; readonly DocumentStatusDraft: "DOCUMENT_STATUS_DRAFT"; readonly DocumentStatusInReview: "DOCUMENT_STATUS_IN_REVIEW"; readonly DocumentStatusApproved: "DOCUMENT_STATUS_APPROVED"; readonly DocumentStatusRejected: "DOCUMENT_STATUS_REJECTED"; readonly DocumentStatusExpired: "DOCUMENT_STATUS_EXPIRED"; readonly DocumentStatusArchived: "DOCUMENT_STATUS_ARCHIVED"; }>; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly DocumentStatusUnspecified: "DOCUMENT_STATUS_UNSPECIFIED"; readonly DocumentStatusDraft: "DOCUMENT_STATUS_DRAFT"; readonly DocumentStatusInReview: "DOCUMENT_STATUS_IN_REVIEW"; readonly DocumentStatusApproved: "DOCUMENT_STATUS_APPROVED"; readonly DocumentStatusRejected: "DOCUMENT_STATUS_REJECTED"; readonly DocumentStatusExpired: "DOCUMENT_STATUS_EXPIRED"; readonly DocumentStatusArchived: "DOCUMENT_STATUS_ARCHIVED"; }>; } /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesStatus$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly SignatureStatusUnspecified: "SIGNATURE_STATUS_UNSPECIFIED"; readonly SignatureStatusPending: "SIGNATURE_STATUS_PENDING"; readonly SignatureStatusSigned: "SIGNATURE_STATUS_SIGNED"; readonly SignatureStatusRejected: "SIGNATURE_STATUS_REJECTED"; readonly SignatureStatusExpired: "SIGNATURE_STATUS_EXPIRED"; readonly SignatureStatusRevoked: "SIGNATURE_STATUS_REVOKED"; }>; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly SignatureStatusUnspecified: "SIGNATURE_STATUS_UNSPECIFIED"; readonly SignatureStatusPending: "SIGNATURE_STATUS_PENDING"; readonly SignatureStatusSigned: "SIGNATURE_STATUS_SIGNED"; readonly SignatureStatusRejected: "SIGNATURE_STATUS_REJECTED"; readonly SignatureStatusExpired: "SIGNATURE_STATUS_EXPIRED"; readonly SignatureStatusRevoked: "SIGNATURE_STATUS_REVOKED"; }>; } /** @internal */ export declare const SignatureBlocks$inboundSchema: z.ZodType; /** @internal */ export type SignatureBlocks$Outbound = { id?: string | undefined; requestId?: string | undefined; blockType?: string | undefined; pageNumber?: number | undefined; xPosition?: number | undefined; yPosition?: number | undefined; width?: number | undefined; height?: number | undefined; isRequired?: boolean | undefined; signatureData?: string | undefined; signedAt?: string | undefined; }; /** @internal */ export declare const SignatureBlocks$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SignatureBlocks$ { /** @deprecated use `SignatureBlocks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SignatureBlocks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SignatureBlocks$Outbound` instead. */ type Outbound = SignatureBlocks$Outbound; } export declare function signatureBlocksToJSON(signatureBlocks: SignatureBlocks): string; export declare function signatureBlocksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Workflow$inboundSchema: z.ZodType; /** @internal */ export type Workflow$Outbound = { id?: string | undefined; requestId?: string | undefined; signingOrder?: Array | undefined; currentSigner?: string | undefined; workflowStatus?: string | undefined; parallelSigning?: boolean | undefined; requireAllSignatures?: boolean | undefined; deadline?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const Workflow$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Workflow$ { /** @deprecated use `Workflow$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Workflow$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Workflow$Outbound` instead. */ type Outbound = Workflow$Outbound; } export declare function workflowToJSON(workflow: Workflow): string; export declare function workflowFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SignatureRequests$inboundSchema: z.ZodType; /** @internal */ export type SignatureRequests$Outbound = { id?: string | undefined; status: string; signerEmail?: string | undefined; signerName?: string | undefined; role?: string | undefined; authenticationMethod?: string | undefined; expiresAt?: string | undefined; requiresMfa?: boolean | undefined; signatureType?: string | undefined; reminderSchedule?: Array | undefined; documentId?: string | undefined; signatureBlocks?: Array | undefined; workflow?: Workflow$Outbound | undefined; }; /** @internal */ export declare const SignatureRequests$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SignatureRequests$ { /** @deprecated use `SignatureRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SignatureRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SignatureRequests$Outbound` instead. */ type Outbound = SignatureRequests$Outbound; } export declare function signatureRequestsToJSON(signatureRequests: SignatureRequests): string; export declare function signatureRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AiAssistance$inboundSchema: z.ZodType; /** @internal */ export type AiAssistance$Outbound = { id?: string | undefined; documentId?: string | undefined; interactionType?: string | undefined; userQuery?: string | undefined; aiResponse?: string | undefined; context?: { [k: string]: string; } | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const AiAssistance$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace AiAssistance$ { /** @deprecated use `AiAssistance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AiAssistance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AiAssistance$Outbound` instead. */ type Outbound = AiAssistance$Outbound; } export declare function aiAssistanceToJSON(aiAssistance: AiAssistance): string; export declare function aiAssistanceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Rounds$inboundSchema: z.ZodType; /** @internal */ export type Rounds$Outbound = { id?: string | undefined; historyId?: string | undefined; roundNumber?: number | undefined; proposerId?: string | undefined; proposalContent?: string | undefined; responseContent?: string | undefined; status?: string | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const Rounds$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Rounds$ { /** @deprecated use `Rounds$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Rounds$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Rounds$Outbound` instead. */ type Outbound = Rounds$Outbound; } export declare function roundsToJSON(rounds: Rounds): string; export declare function roundsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Negotiation$inboundSchema: z.ZodType; /** @internal */ export type Negotiation$Outbound = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: string | undefined; lastUpdated?: string | undefined; }; /** @internal */ export declare const Negotiation$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Negotiation$ { /** @deprecated use `Negotiation$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Negotiation$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Negotiation$Outbound` instead. */ type Outbound = Negotiation$Outbound; } export declare function negotiationToJSON(negotiation: Negotiation): string; export declare function negotiationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Merges$inboundSchema: z.ZodType; /** @internal */ export type Merges$Outbound = { id?: string | undefined; branchId?: string | undefined; sourceBranch?: string | undefined; targetBranch?: string | undefined; mergeStatus?: string | undefined; mergeStrategy?: string | undefined; conflicts?: Array | undefined; mergerId?: string | undefined; createdAt?: string | undefined; completedAt?: string | undefined; }; /** @internal */ export declare const Merges$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Merges$ { /** @deprecated use `Merges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Merges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Merges$Outbound` instead. */ type Outbound = Merges$Outbound; } export declare function mergesToJSON(merges: Merges): string; export declare function mergesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Policy$inboundSchema: z.ZodType; /** @internal */ export type Policy$Outbound = { id?: string | undefined; branchId?: string | undefined; requiredApprovers?: Array | undefined; minimumApprovals?: number | undefined; enforceLinearHistory?: boolean | undefined; allowForcePush?: boolean | undefined; protectedPaths?: Array | undefined; mergeRules?: { [k: string]: string; } | undefined; automatedChecks?: Array | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const Policy$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Policy$ { /** @deprecated use `Policy$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Policy$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Policy$Outbound` instead. */ type Outbound = Policy$Outbound; } export declare function policyToJSON(policy: Policy): string; export declare function policyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MergeRequests$inboundSchema: z.ZodType; /** @internal */ export type MergeRequests$Outbound = { id?: string | undefined; sourceBranchId?: string | undefined; targetBranchId?: string | undefined; title?: string | undefined; description?: string | undefined; authorId?: string | undefined; reviewers?: Array | undefined; status?: string | undefined; labels?: Array | undefined; hasConflicts?: boolean | undefined; automatedCheckResults?: Array | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const MergeRequests$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace MergeRequests$ { /** @deprecated use `MergeRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MergeRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MergeRequests$Outbound` instead. */ type Outbound = MergeRequests$Outbound; } export declare function mergeRequestsToJSON(mergeRequests: MergeRequests): string; export declare function mergeRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Branches$inboundSchema: z.ZodType; /** @internal */ export type Branches$Outbound = { id?: string | undefined; name?: string | undefined; baseVersionHash?: string | undefined; currentHeadHash?: string | undefined; purpose?: string | undefined; status?: string | undefined; reviewers?: Array | undefined; branchMetadata?: { [k: string]: string; } | undefined; isLocked?: boolean | undefined; lastUpdated?: string | undefined; merges?: Array | undefined; policy?: Policy$Outbound | undefined; mergeRequests?: Array | undefined; }; /** @internal */ export declare const Branches$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Branches$ { /** @deprecated use `Branches$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Branches$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Branches$Outbound` instead. */ type Outbound = Branches$Outbound; } export declare function branchesToJSON(branches: Branches): string; export declare function branchesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Changes$inboundSchema: z.ZodType; /** @internal */ export type Changes$Outbound = { id?: string | undefined; versionId?: string | undefined; changeType?: string | undefined; contentBefore?: string | undefined; contentAfter?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const Changes$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Changes$ { /** @deprecated use `Changes$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Changes$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Changes$Outbound` instead. */ type Outbound = Changes$Outbound; } export declare function changesToJSON(changes: Changes): string; export declare function changesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Summaries$inboundSchema: z.ZodType; /** @internal */ export type Summaries$Outbound = { id?: string | undefined; versionId?: string | undefined; summaryType?: string | undefined; content?: string | undefined; targetAudience?: string | undefined; keyPoints?: Array | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const Summaries$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Summaries$ { /** @deprecated use `Summaries$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Summaries$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Summaries$Outbound` instead. */ type Outbound = Summaries$Outbound; } export declare function summariesToJSON(summaries: Summaries): string; export declare function summariesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersions$Outbound = { id?: string | undefined; versionHash?: string | undefined; parentHash?: string | undefined; commitMessage?: string | undefined; authorId?: string | undefined; branchName?: string | undefined; metadata?: { [k: string]: string; } | undefined; tags?: Array | undefined; isApproved?: boolean | undefined; approvalChain?: string | undefined; createdAt?: string | undefined; branches?: Array | undefined; changes?: Array | undefined; summaries?: Array | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersions$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersions$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersions$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersions$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersionsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersions: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersions): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Instances$inboundSchema: z.ZodType; /** @internal */ export type Instances$Outbound = { id?: string | undefined; templateId?: string | undefined; status: string; fieldValues?: { [k: string]: string; } | undefined; signers?: Array | undefined; language?: string | undefined; isCompleted?: boolean | undefined; dueDate?: string | undefined; generatedContent?: string | undefined; attachments?: Array | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; signatureRequests?: Array | undefined; aiAssistance?: Array | undefined; negotiation?: Negotiation$Outbound | undefined; versions?: Array | undefined; }; /** @internal */ export declare const Instances$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Instances$ { /** @deprecated use `Instances$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Instances$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Instances$Outbound` instead. */ type Outbound = Instances$Outbound; } export declare function instancesToJSON(instances: Instances): string; export declare function instancesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Explanations$inboundSchema: z.ZodType; /** @internal */ export type Explanations$Outbound = { id?: string | undefined; templateId?: string | undefined; sectionIdentifier?: string | undefined; explanationText?: string | undefined; complexityLevel?: string | undefined; relatedTerms?: Array | undefined; legalReferences?: Array | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const Explanations$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Explanations$ { /** @deprecated use `Explanations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Explanations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Explanations$Outbound` instead. */ type Outbound = Explanations$Outbound; } export declare function explanationsToJSON(explanations: Explanations): string; export declare function explanationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const RiskAssessments$inboundSchema: z.ZodType; /** @internal */ export type RiskAssessments$Outbound = { id?: string | undefined; intelligenceId?: string | undefined; riskType?: string | undefined; riskScore?: number | undefined; assessmentDetails?: string | undefined; mitigationSuggestions?: Array | undefined; assessorId?: string | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const RiskAssessments$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace RiskAssessments$ { /** @deprecated use `RiskAssessments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RiskAssessments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RiskAssessments$Outbound` instead. */ type Outbound = RiskAssessments$Outbound; } export declare function riskAssessmentsToJSON(riskAssessments: RiskAssessments): string; export declare function riskAssessmentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ComplianceChecks$inboundSchema: z.ZodType; /** @internal */ export type ComplianceChecks$Outbound = { id?: string | undefined; intelligenceId?: string | undefined; complianceStandard?: string | undefined; checkResult?: string | undefined; violations?: Array | undefined; remediationSteps?: string | undefined; checkDate?: string | undefined; }; /** @internal */ export declare const ComplianceChecks$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ComplianceChecks$ { /** @deprecated use `ComplianceChecks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ComplianceChecks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ComplianceChecks$Outbound` instead. */ type Outbound = ComplianceChecks$Outbound; } export declare function complianceChecksToJSON(complianceChecks: ComplianceChecks): string; export declare function complianceChecksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Intelligence$inboundSchema: z.ZodType; /** @internal */ export type Intelligence$Outbound = { id?: string | undefined; contractType?: string | undefined; riskScores?: { [k: string]: number; } | undefined; detectedClauses?: { [k: string]: string; } | undefined; keyObligations?: Array | undefined; complianceScores?: { [k: string]: number; } | undefined; jurisdiction?: string | undefined; governingLaws?: Array | undefined; semanticAnalysis?: { [k: string]: string; } | undefined; analysisDate?: string | undefined; riskAssessments?: Array | undefined; complianceChecks?: Array | undefined; }; /** @internal */ export declare const Intelligence$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Intelligence$ { /** @deprecated use `Intelligence$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Intelligence$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Intelligence$Outbound` instead. */ type Outbound = Intelligence$Outbound; } export declare function intelligenceToJSON(intelligence: Intelligence): string; export declare function intelligenceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Templates$inboundSchema: z.ZodType; /** @internal */ export type Templates$Outbound = { id?: string | undefined; name?: string | undefined; description?: string | undefined; industryType?: string | undefined; documentType?: string | undefined; baseContent?: string | undefined; isAdaptive?: boolean | undefined; metadata?: { [k: string]: string; } | undefined; supportedLanguages?: Array | undefined; requiredDataFields?: Array | undefined; version?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; templateType: string; content?: string | undefined; detectedVariables?: Array | undefined; variableMappings?: { [k: string]: string; } | undefined; isContextAware?: boolean | undefined; supportedContexts?: Array | undefined; formattingRules?: { [k: string]: string; } | undefined; conditionalSections?: Array | undefined; versions?: Array | undefined; variables?: Array | undefined; instances?: Array | undefined; explanations?: Array | undefined; intelligence?: Array | undefined; }; /** @internal */ export declare const Templates$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Templates$ { /** @deprecated use `Templates$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Templates$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Templates$Outbound` instead. */ type Outbound = Templates$Outbound; } export declare function templatesToJSON(templates: Templates): string; export declare function templatesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceSharing$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceSharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceSharing$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceSharing$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSharing$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceSharing$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceSharingToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceSharing: PutApiLeadScraperMicroserviceApiV1WorkspaceSharing): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceSharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Activities$inboundSchema: z.ZodType; /** @internal */ export type Activities$Outbound = { id?: string | undefined; activityType?: string | undefined; userId?: string | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const Activities$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Activities$ { /** @deprecated use `Activities$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Activities$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Activities$Outbound` instead. */ type Outbound = Activities$Outbound; } export declare function activitiesToJSON(activities: Activities): string; export declare function activitiesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Compliance$inboundSchema: z.ZodType; /** @internal */ export type Compliance$Outbound = { id?: string | undefined; complianceType?: string | undefined; status?: string | undefined; certificationId?: string | undefined; validUntil?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const Compliance$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Compliance$ { /** @deprecated use `Compliance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Compliance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Compliance$Outbound` instead. */ type Outbound = Compliance$Outbound; } export declare function complianceToJSON(compliance: Compliance): string; export declare function complianceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Category$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Category$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Category$ { /** @deprecated use `Category$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly AppCategoryUnspecified: "APP_CATEGORY_UNSPECIFIED"; readonly AppCategoryContractAutomation: "APP_CATEGORY_CONTRACT_AUTOMATION"; readonly AppCategoryContractAnalysis: "APP_CATEGORY_CONTRACT_ANALYSIS"; readonly AppCategoryIntegration: "APP_CATEGORY_INTEGRATION"; readonly AppCategoryAiPowered: "APP_CATEGORY_AI_POWERED"; readonly AppCategoryWorkflow: "APP_CATEGORY_WORKFLOW"; readonly AppCategoryCompliance: "APP_CATEGORY_COMPLIANCE"; }>; /** @deprecated use `Category$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly AppCategoryUnspecified: "APP_CATEGORY_UNSPECIFIED"; readonly AppCategoryContractAutomation: "APP_CATEGORY_CONTRACT_AUTOMATION"; readonly AppCategoryContractAnalysis: "APP_CATEGORY_CONTRACT_ANALYSIS"; readonly AppCategoryIntegration: "APP_CATEGORY_INTEGRATION"; readonly AppCategoryAiPowered: "APP_CATEGORY_AI_POWERED"; readonly AppCategoryWorkflow: "APP_CATEGORY_WORKFLOW"; readonly AppCategoryCompliance: "APP_CATEGORY_COMPLIANCE"; }>; } /** @internal */ export declare const PricingModel$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PricingModel$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PricingModel$ { /** @deprecated use `PricingModel$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly PricingModelUnspecified: "PRICING_MODEL_UNSPECIFIED"; readonly PricingModelFree: "PRICING_MODEL_FREE"; readonly PricingModelSubscription: "PRICING_MODEL_SUBSCRIPTION"; readonly PricingModelUsageBased: "PRICING_MODEL_USAGE_BASED"; readonly PricingModelEnterprise: "PRICING_MODEL_ENTERPRISE"; }>; /** @deprecated use `PricingModel$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly PricingModelUnspecified: "PRICING_MODEL_UNSPECIFIED"; readonly PricingModelFree: "PRICING_MODEL_FREE"; readonly PricingModelSubscription: "PRICING_MODEL_SUBSCRIPTION"; readonly PricingModelUsageBased: "PRICING_MODEL_USAGE_BASED"; readonly PricingModelEnterprise: "PRICING_MODEL_ENTERPRISE"; }>; } /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersions$Outbound = { id?: string | undefined; appId?: string | undefined; versionNumber?: string | undefined; changelog?: string | undefined; requirements?: { [k: string]: string; } | undefined; isPublic?: boolean | undefined; releaseDate?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersions$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersions$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersions$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersions$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersionsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersions: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersions): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesRequestVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Installations$inboundSchema: z.ZodType; /** @internal */ export type Installations$Outbound = { id?: string | undefined; appId?: string | undefined; workspaceId?: string | undefined; versionInstalled?: string | undefined; configuration?: { [k: string]: string; } | undefined; installationStatus?: string | undefined; installedAt?: string | undefined; lastUsed?: string | undefined; }; /** @internal */ export declare const Installations$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Installations$ { /** @deprecated use `Installations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Installations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Installations$Outbound` instead. */ type Outbound = Installations$Outbound; } export declare function installationsToJSON(installations: Installations): string; export declare function installationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Analytics$inboundSchema: z.ZodType; /** @internal */ export type Analytics$Outbound = { id?: string | undefined; appId?: string | undefined; metricName?: string | undefined; metricValue?: number | undefined; dimensions?: { [k: string]: string; } | undefined; recordedAt?: string | undefined; }; /** @internal */ export declare const Analytics$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Analytics$ { /** @deprecated use `Analytics$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Analytics$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Analytics$Outbound` instead. */ type Outbound = Analytics$Outbound; } export declare function analyticsToJSON(analytics: Analytics): string; export declare function analyticsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceReviews$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceReviews$Outbound = { id?: string | undefined; appId?: string | undefined; reviewerId?: string | undefined; rating?: number | undefined; reviewText?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceReviews$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceReviews$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceReviews$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceReviews$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceReviews$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceReviews$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceReviewsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceReviews: PutApiLeadScraperMicroserviceApiV1WorkspaceReviews): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceReviewsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Info$inboundSchema: z.ZodType; /** @internal */ export type Info$Outbound = { id?: string | undefined; appId?: string | undefined; supportedLanguages?: Array | undefined; sdkFeatures?: Array | undefined; testCoverage?: { [k: string]: number; } | undefined; securityScans?: Array | undefined; performanceMetrics?: { [k: string]: string; } | undefined; developmentStatus?: string | undefined; knownIssues?: Array | undefined; roadmapUrl?: string | undefined; lastSecurityAudit?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const Info$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Info$ { /** @deprecated use `Info$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Info$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Info$Outbound` instead. */ type Outbound = Info$Outbound; } export declare function infoToJSON(info: Info): string; export declare function infoFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWebhooks$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWebhooks$Outbound = { id?: string | undefined; appId?: string | undefined; url?: string | undefined; subscribedEvents?: Array | undefined; secretKey?: string | undefined; retryCount?: number | undefined; timeoutSeconds?: number | undefined; isActive?: boolean | undefined; headers?: { [k: string]: string; } | undefined; lastTriggered?: string | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWebhooks$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWebhooks$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWebhooks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWebhooks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWebhooks$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWebhooks$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWebhooksToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWebhooks: PutApiLeadScraperMicroserviceApiV1WorkspaceWebhooks): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWebhooksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspacePermissions$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspacePermissions$Outbound = { id?: string | undefined; appId?: string | undefined; scope?: string | undefined; description?: string | undefined; isRequired?: boolean | undefined; accessLevels?: Array | undefined; constraints?: { [k: string]: string; } | undefined; requiresApproval?: boolean | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspacePermissions$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspacePermissions$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspacePermissions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspacePermissions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspacePermissions$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspacePermissions$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspacePermissionsToJSON(putApiLeadScraperMicroserviceApiV1WorkspacePermissions: PutApiLeadScraperMicroserviceApiV1WorkspacePermissions): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspacePermissionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const InstalledApps$inboundSchema: z.ZodType; /** @internal */ export type InstalledApps$Outbound = { id?: string | undefined; name?: string | undefined; description?: string | undefined; developerId?: string | undefined; category: string; supportedContractTypes?: Array | undefined; features?: Array | undefined; pricingModel: string; pricingTiers?: { [k: string]: number; } | undefined; supportedIntegrations?: Array | undefined; isVerified?: boolean | undefined; rating?: number | undefined; installationCount?: number | undefined; requiredPermissions?: Array | undefined; metadata?: { [k: string]: string; } | undefined; documentationUrl?: string | undefined; supportEmail?: string | undefined; screenshots?: Array | undefined; privacyPolicyUrl?: string | undefined; termsUrl?: string | undefined; publishedAt?: string | undefined; lastUpdated?: string | undefined; versions?: Array | undefined; installations?: Array | undefined; analytics?: Array | undefined; reviews?: Array | undefined; info?: Info$Outbound | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; /** @internal */ export declare const InstalledApps$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace InstalledApps$ { /** @deprecated use `InstalledApps$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `InstalledApps$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `InstalledApps$Outbound` instead. */ type Outbound = InstalledApps$Outbound; } export declare function installedAppsToJSON(installedApps: InstalledApps): string; export declare function installedAppsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Workspace$inboundSchema: z.ZodType; /** @internal */ export type Workspace$Outbound = { id?: string | undefined; name?: string | undefined; uniqueIdentifier?: string | undefined; s3BucketName?: string | undefined; s3FolderPath?: string | undefined; storageQuota?: string | undefined; usedStorage?: string | undefined; allowPublicSharing?: boolean | undefined; requireApproval?: boolean | undefined; gdprCompliant?: boolean | undefined; hipaaCompliant?: boolean | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; deletedAt?: string | undefined; folders?: Array | undefined; templates?: Array | undefined; sharing?: Array | undefined; activities?: Array | undefined; compliance?: Array | undefined; installedApps?: Array | undefined; }; /** @internal */ export declare const Workspace$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Workspace$ { /** @deprecated use `Workspace$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Workspace$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Workspace$Outbound` instead. */ type Outbound = Workspace$Outbound; } export declare function workspaceToJSON(workspace: Workspace): string; export declare function workspaceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceRequestBody$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceRequestBody$Outbound = { workspace?: Workspace$Outbound | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceRequestBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceRequestBody$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceRequestBody$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceRequestBody$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceRequestBodyToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceRequestBody: PutApiLeadScraperMicroserviceApiV1WorkspaceRequestBody): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceRequestBodyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings$Outbound = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceEmbeddingsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings: PutApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceEmbeddingsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersions$Outbound = { id?: string | undefined; fileId?: string | undefined; versionNumber?: number | undefined; s3Key?: string | undefined; size?: string | undefined; commitMessage?: string | undefined; authorId?: string | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersions$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersions$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersions$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersions$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersionsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersions: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersions): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONResponseBodyVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceComments$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceComments$Outbound = { id?: string | undefined; authorId?: string | undefined; content?: string | undefined; startPosition?: number | undefined; endPosition?: number | undefined; resolved?: boolean | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceComments$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceComments$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceComments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceComments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceComments$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceComments$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceCommentsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceComments: PutApiLeadScraperMicroserviceApiV1WorkspaceComments): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceCommentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharing$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharing$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharing$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharing$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharing$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharingToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharing: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharing): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseSharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceSnapshots$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceSnapshots$Outbound = { id?: string | undefined; fileId?: string | undefined; snapshotHash?: string | undefined; content?: string | undefined; authorId?: string | undefined; reason?: string | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceSnapshots$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceSnapshots$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSnapshots$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSnapshots$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSnapshots$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceSnapshots$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceSnapshotsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceSnapshots: PutApiLeadScraperMicroserviceApiV1WorkspaceSnapshots): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceSnapshotsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceFiles$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceFiles$Outbound = { id?: string | undefined; name?: string | undefined; size?: string | undefined; s3Key?: string | undefined; s3BucketName?: string | undefined; isDeleted?: boolean | undefined; version?: number | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; deletedAt?: string | undefined; embeddings?: PutApiLeadScraperMicroserviceApiV1WorkspaceEmbeddings$Outbound | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceFiles$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceFiles$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceFiles$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceFiles$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceFiles$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceFiles$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceFilesToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceFiles: PutApiLeadScraperMicroserviceApiV1WorkspaceFiles): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceFilesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceFolders$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceFolders$Outbound = { id?: string | undefined; name?: string | undefined; s3BucketName?: string | undefined; s3FolderPath?: string | undefined; isDeleted?: boolean | undefined; parentFolderId?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; deletedAt?: string | undefined; files?: Array | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceFolders$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceFolders$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceFolders$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceFolders$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceFolders$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceFolders$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceFoldersToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceFolders: PutApiLeadScraperMicroserviceApiV1WorkspaceFolders): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceFoldersFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceTemplateType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceTemplateType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceTemplateType$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceTemplateType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly TemplateTypeUnspecified: "TEMPLATE_TYPE_UNSPECIFIED"; readonly TemplateTypeStandard: "TEMPLATE_TYPE_STANDARD"; readonly TemplateTypeSmart: "TEMPLATE_TYPE_SMART"; readonly TemplateTypeAdaptive: "TEMPLATE_TYPE_ADAPTIVE"; readonly TemplateTypeAiGenerated: "TEMPLATE_TYPE_AI_GENERATED"; }>; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceTemplateType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly TemplateTypeUnspecified: "TEMPLATE_TYPE_UNSPECIFIED"; readonly TemplateTypeStandard: "TEMPLATE_TYPE_STANDARD"; readonly TemplateTypeSmart: "TEMPLATE_TYPE_SMART"; readonly TemplateTypeAdaptive: "TEMPLATE_TYPE_ADAPTIVE"; readonly TemplateTypeAiGenerated: "TEMPLATE_TYPE_AI_GENERATED"; }>; } /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersions$Outbound = { id?: string | undefined; templateId?: string | undefined; version?: string | undefined; baseContent?: string | undefined; metadata?: { [k: string]: string; } | undefined; authorId?: string | undefined; changeDescription?: string | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersions$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersions$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersions$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersions$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersionsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersions: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersions): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceVariables$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceVariables$Outbound = { id?: string | undefined; name?: string | undefined; description?: string | undefined; variableType?: string | undefined; defaultValue?: string | undefined; isRequired?: boolean | undefined; validationRules?: string | undefined; dataSource?: string | undefined; aiExtractionRules?: string | undefined; alternatives?: Array | undefined; templateId?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceVariables$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceVariables$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceVariables$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceVariables$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceVariables$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceVariables$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceVariablesToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceVariables: PutApiLeadScraperMicroserviceApiV1WorkspaceVariables): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceVariablesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseStatus$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly DocumentStatusUnspecified: "DOCUMENT_STATUS_UNSPECIFIED"; readonly DocumentStatusDraft: "DOCUMENT_STATUS_DRAFT"; readonly DocumentStatusInReview: "DOCUMENT_STATUS_IN_REVIEW"; readonly DocumentStatusApproved: "DOCUMENT_STATUS_APPROVED"; readonly DocumentStatusRejected: "DOCUMENT_STATUS_REJECTED"; readonly DocumentStatusExpired: "DOCUMENT_STATUS_EXPIRED"; readonly DocumentStatusArchived: "DOCUMENT_STATUS_ARCHIVED"; }>; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponseStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly DocumentStatusUnspecified: "DOCUMENT_STATUS_UNSPECIFIED"; readonly DocumentStatusDraft: "DOCUMENT_STATUS_DRAFT"; readonly DocumentStatusInReview: "DOCUMENT_STATUS_IN_REVIEW"; readonly DocumentStatusApproved: "DOCUMENT_STATUS_APPROVED"; readonly DocumentStatusRejected: "DOCUMENT_STATUS_REJECTED"; readonly DocumentStatusExpired: "DOCUMENT_STATUS_EXPIRED"; readonly DocumentStatusArchived: "DOCUMENT_STATUS_ARCHIVED"; }>; } /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Status$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Status$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Status$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Status$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly SignatureStatusUnspecified: "SIGNATURE_STATUS_UNSPECIFIED"; readonly SignatureStatusPending: "SIGNATURE_STATUS_PENDING"; readonly SignatureStatusSigned: "SIGNATURE_STATUS_SIGNED"; readonly SignatureStatusRejected: "SIGNATURE_STATUS_REJECTED"; readonly SignatureStatusExpired: "SIGNATURE_STATUS_EXPIRED"; readonly SignatureStatusRevoked: "SIGNATURE_STATUS_REVOKED"; }>; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Status$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly SignatureStatusUnspecified: "SIGNATURE_STATUS_UNSPECIFIED"; readonly SignatureStatusPending: "SIGNATURE_STATUS_PENDING"; readonly SignatureStatusSigned: "SIGNATURE_STATUS_SIGNED"; readonly SignatureStatusRejected: "SIGNATURE_STATUS_REJECTED"; readonly SignatureStatusExpired: "SIGNATURE_STATUS_EXPIRED"; readonly SignatureStatusRevoked: "SIGNATURE_STATUS_REVOKED"; }>; } /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocks$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocks$Outbound = { id?: string | undefined; requestId?: string | undefined; blockType?: string | undefined; pageNumber?: number | undefined; xPosition?: number | undefined; yPosition?: number | undefined; width?: number | undefined; height?: number | undefined; isRequired?: boolean | undefined; signatureData?: string | undefined; signedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocks$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocks$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocks$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocks$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocksToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocks: PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocks): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceSignatureBlocksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkflow$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkflow$Outbound = { id?: string | undefined; requestId?: string | undefined; signingOrder?: Array | undefined; currentSigner?: string | undefined; workflowStatus?: string | undefined; parallelSigning?: boolean | undefined; requireAllSignatures?: boolean | undefined; deadline?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkflow$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkflow$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkflow$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkflow$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkflow$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkflow$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkflowToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkflow: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkflow): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkflowFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequests$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequests$Outbound = { id?: string | undefined; status: string; signerEmail?: string | undefined; signerName?: string | undefined; role?: string | undefined; authenticationMethod?: string | undefined; expiresAt?: string | undefined; requiresMfa?: boolean | undefined; signatureType?: string | undefined; reminderSchedule?: Array | undefined; documentId?: string | undefined; signatureBlocks?: Array | undefined; workflow?: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkflow$Outbound | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequests$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequests$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequests$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequests$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequestsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequests: PutApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequests): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceSignatureRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceAiAssistance$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceAiAssistance$Outbound = { id?: string | undefined; documentId?: string | undefined; interactionType?: string | undefined; userQuery?: string | undefined; aiResponse?: string | undefined; context?: { [k: string]: string; } | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceAiAssistance$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceAiAssistance$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceAiAssistance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceAiAssistance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceAiAssistance$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceAiAssistance$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceAiAssistanceToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceAiAssistance: PutApiLeadScraperMicroserviceApiV1WorkspaceAiAssistance): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceAiAssistanceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceRounds$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceRounds$Outbound = { id?: string | undefined; historyId?: string | undefined; roundNumber?: number | undefined; proposerId?: string | undefined; proposalContent?: string | undefined; responseContent?: string | undefined; status?: string | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceRounds$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceRounds$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceRounds$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceRounds$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceRounds$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceRounds$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceRoundsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceRounds: PutApiLeadScraperMicroserviceApiV1WorkspaceRounds): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceRoundsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceNegotiation$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceNegotiation$Outbound = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: string | undefined; lastUpdated?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceNegotiation$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceNegotiation$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceNegotiation$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceNegotiation$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceNegotiation$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceNegotiation$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceNegotiationToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceNegotiation: PutApiLeadScraperMicroserviceApiV1WorkspaceNegotiation): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceNegotiationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceMerges$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceMerges$Outbound = { id?: string | undefined; branchId?: string | undefined; sourceBranch?: string | undefined; targetBranch?: string | undefined; mergeStatus?: string | undefined; mergeStrategy?: string | undefined; conflicts?: Array | undefined; mergerId?: string | undefined; createdAt?: string | undefined; completedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceMerges$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceMerges$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceMerges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceMerges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceMerges$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceMerges$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceMergesToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceMerges: PutApiLeadScraperMicroserviceApiV1WorkspaceMerges): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceMergesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspacePolicy$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspacePolicy$Outbound = { id?: string | undefined; branchId?: string | undefined; requiredApprovers?: Array | undefined; minimumApprovals?: number | undefined; enforceLinearHistory?: boolean | undefined; allowForcePush?: boolean | undefined; protectedPaths?: Array | undefined; mergeRules?: { [k: string]: string; } | undefined; automatedChecks?: Array | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspacePolicy$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspacePolicy$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspacePolicy$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspacePolicy$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspacePolicy$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspacePolicy$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspacePolicyToJSON(putApiLeadScraperMicroserviceApiV1WorkspacePolicy: PutApiLeadScraperMicroserviceApiV1WorkspacePolicy): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspacePolicyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceMergeRequests$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceMergeRequests$Outbound = { id?: string | undefined; sourceBranchId?: string | undefined; targetBranchId?: string | undefined; title?: string | undefined; description?: string | undefined; authorId?: string | undefined; reviewers?: Array | undefined; status?: string | undefined; labels?: Array | undefined; hasConflicts?: boolean | undefined; automatedCheckResults?: Array | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceMergeRequests$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceMergeRequests$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceMergeRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceMergeRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceMergeRequests$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceMergeRequests$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceMergeRequestsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceMergeRequests: PutApiLeadScraperMicroserviceApiV1WorkspaceMergeRequests): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceMergeRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceBranches$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceBranches$Outbound = { id?: string | undefined; name?: string | undefined; baseVersionHash?: string | undefined; currentHeadHash?: string | undefined; purpose?: string | undefined; status?: string | undefined; reviewers?: Array | undefined; branchMetadata?: { [k: string]: string; } | undefined; isLocked?: boolean | undefined; lastUpdated?: string | undefined; merges?: Array | undefined; policy?: PutApiLeadScraperMicroserviceApiV1WorkspacePolicy$Outbound | undefined; mergeRequests?: Array | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceBranches$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceBranches$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceBranches$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceBranches$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceBranches$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceBranches$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceBranchesToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceBranches: PutApiLeadScraperMicroserviceApiV1WorkspaceBranches): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceBranchesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceChanges$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceChanges$Outbound = { id?: string | undefined; versionId?: string | undefined; changeType?: string | undefined; contentBefore?: string | undefined; contentAfter?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceChanges$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceChanges$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceChanges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceChanges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceChanges$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceChanges$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceChangesToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceChanges: PutApiLeadScraperMicroserviceApiV1WorkspaceChanges): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceChangesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceSummaries$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceSummaries$Outbound = { id?: string | undefined; versionId?: string | undefined; summaryType?: string | undefined; content?: string | undefined; targetAudience?: string | undefined; keyPoints?: Array | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceSummaries$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceSummaries$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSummaries$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSummaries$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceSummaries$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceSummaries$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceSummariesToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceSummaries: PutApiLeadScraperMicroserviceApiV1WorkspaceSummaries): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceSummariesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersions$Outbound = { id?: string | undefined; versionHash?: string | undefined; parentHash?: string | undefined; commitMessage?: string | undefined; authorId?: string | undefined; branchName?: string | undefined; metadata?: { [k: string]: string; } | undefined; tags?: Array | undefined; isApproved?: boolean | undefined; approvalChain?: string | undefined; createdAt?: string | undefined; branches?: Array | undefined; changes?: Array | undefined; summaries?: Array | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersions$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersions$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersions$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersions$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersionsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersions: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersions): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200ApplicationJSONVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceInstances$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceInstances$Outbound = { id?: string | undefined; templateId?: string | undefined; status: string; fieldValues?: { [k: string]: string; } | undefined; signers?: Array | undefined; language?: string | undefined; isCompleted?: boolean | undefined; dueDate?: string | undefined; generatedContent?: string | undefined; attachments?: Array | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; signatureRequests?: Array | undefined; aiAssistance?: Array | undefined; negotiation?: PutApiLeadScraperMicroserviceApiV1WorkspaceNegotiation$Outbound | undefined; versions?: Array | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceInstances$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceInstances$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceInstances$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceInstances$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceInstances$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceInstances$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceInstancesToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceInstances: PutApiLeadScraperMicroserviceApiV1WorkspaceInstances): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceInstancesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceExplanations$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceExplanations$Outbound = { id?: string | undefined; templateId?: string | undefined; sectionIdentifier?: string | undefined; explanationText?: string | undefined; complexityLevel?: string | undefined; relatedTerms?: Array | undefined; legalReferences?: Array | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceExplanations$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceExplanations$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceExplanations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceExplanations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceExplanations$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceExplanations$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceExplanationsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceExplanations: PutApiLeadScraperMicroserviceApiV1WorkspaceExplanations): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceExplanationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessments$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessments$Outbound = { id?: string | undefined; intelligenceId?: string | undefined; riskType?: string | undefined; riskScore?: number | undefined; assessmentDetails?: string | undefined; mitigationSuggestions?: Array | undefined; assessorId?: string | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessments$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessments$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessments$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessments$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessmentsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessments: PutApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessments): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceRiskAssessmentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecks$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecks$Outbound = { id?: string | undefined; intelligenceId?: string | undefined; complianceStandard?: string | undefined; checkResult?: string | undefined; violations?: Array | undefined; remediationSteps?: string | undefined; checkDate?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecks$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecks$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecks$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecks$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecksToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecks: PutApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecks): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceComplianceChecksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceIntelligence$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceIntelligence$Outbound = { id?: string | undefined; contractType?: string | undefined; riskScores?: { [k: string]: number; } | undefined; detectedClauses?: { [k: string]: string; } | undefined; keyObligations?: Array | undefined; complianceScores?: { [k: string]: number; } | undefined; jurisdiction?: string | undefined; governingLaws?: Array | undefined; semanticAnalysis?: { [k: string]: string; } | undefined; analysisDate?: string | undefined; riskAssessments?: Array | undefined; complianceChecks?: Array | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceIntelligence$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceIntelligence$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceIntelligence$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceIntelligence$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceIntelligence$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceIntelligence$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceIntelligenceToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceIntelligence: PutApiLeadScraperMicroserviceApiV1WorkspaceIntelligence): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceIntelligenceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceTemplates$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceTemplates$Outbound = { id?: string | undefined; name?: string | undefined; description?: string | undefined; industryType?: string | undefined; documentType?: string | undefined; baseContent?: string | undefined; isAdaptive?: boolean | undefined; metadata?: { [k: string]: string; } | undefined; supportedLanguages?: Array | undefined; requiredDataFields?: Array | undefined; version?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; templateType: string; content?: string | undefined; detectedVariables?: Array | undefined; variableMappings?: { [k: string]: string; } | undefined; isContextAware?: boolean | undefined; supportedContexts?: Array | undefined; formattingRules?: { [k: string]: string; } | undefined; conditionalSections?: Array | undefined; versions?: Array | undefined; variables?: Array | undefined; instances?: Array | undefined; explanations?: Array | undefined; intelligence?: Array | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceTemplates$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceTemplates$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceTemplates$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceTemplates$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceTemplates$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceTemplates$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceTemplatesToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceTemplates: PutApiLeadScraperMicroserviceApiV1WorkspaceTemplates): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceTemplatesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharing$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharing$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharing$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharing$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharing$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharingToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharing: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharing): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesSharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceActivities$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceActivities$Outbound = { id?: string | undefined; activityType?: string | undefined; userId?: string | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceActivities$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceActivities$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceActivities$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceActivities$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceActivities$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceActivities$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceActivitiesToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceActivities: PutApiLeadScraperMicroserviceApiV1WorkspaceActivities): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceActivitiesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceCompliance$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceCompliance$Outbound = { id?: string | undefined; complianceType?: string | undefined; status?: string | undefined; certificationId?: string | undefined; validUntil?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceCompliance$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceCompliance$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceCompliance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceCompliance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceCompliance$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceCompliance$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceComplianceToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceCompliance: PutApiLeadScraperMicroserviceApiV1WorkspaceCompliance): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceComplianceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceCategory$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceCategory$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceCategory$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceCategory$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly AppCategoryUnspecified: "APP_CATEGORY_UNSPECIFIED"; readonly AppCategoryContractAutomation: "APP_CATEGORY_CONTRACT_AUTOMATION"; readonly AppCategoryContractAnalysis: "APP_CATEGORY_CONTRACT_ANALYSIS"; readonly AppCategoryIntegration: "APP_CATEGORY_INTEGRATION"; readonly AppCategoryAiPowered: "APP_CATEGORY_AI_POWERED"; readonly AppCategoryWorkflow: "APP_CATEGORY_WORKFLOW"; readonly AppCategoryCompliance: "APP_CATEGORY_COMPLIANCE"; }>; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceCategory$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly AppCategoryUnspecified: "APP_CATEGORY_UNSPECIFIED"; readonly AppCategoryContractAutomation: "APP_CATEGORY_CONTRACT_AUTOMATION"; readonly AppCategoryContractAnalysis: "APP_CATEGORY_CONTRACT_ANALYSIS"; readonly AppCategoryIntegration: "APP_CATEGORY_INTEGRATION"; readonly AppCategoryAiPowered: "APP_CATEGORY_AI_POWERED"; readonly AppCategoryWorkflow: "APP_CATEGORY_WORKFLOW"; readonly AppCategoryCompliance: "APP_CATEGORY_COMPLIANCE"; }>; } /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspacePricingModel$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspacePricingModel$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspacePricingModel$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspacePricingModel$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly PricingModelUnspecified: "PRICING_MODEL_UNSPECIFIED"; readonly PricingModelFree: "PRICING_MODEL_FREE"; readonly PricingModelSubscription: "PRICING_MODEL_SUBSCRIPTION"; readonly PricingModelUsageBased: "PRICING_MODEL_USAGE_BASED"; readonly PricingModelEnterprise: "PRICING_MODEL_ENTERPRISE"; }>; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspacePricingModel$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly PricingModelUnspecified: "PRICING_MODEL_UNSPECIFIED"; readonly PricingModelFree: "PRICING_MODEL_FREE"; readonly PricingModelSubscription: "PRICING_MODEL_SUBSCRIPTION"; readonly PricingModelUsageBased: "PRICING_MODEL_USAGE_BASED"; readonly PricingModelEnterprise: "PRICING_MODEL_ENTERPRISE"; }>; } /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Versions$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Versions$Outbound = { id?: string | undefined; appId?: string | undefined; versionNumber?: string | undefined; changelog?: string | undefined; requirements?: { [k: string]: string; } | undefined; isPublic?: boolean | undefined; releaseDate?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Versions$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Versions$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Versions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Versions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Versions$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Versions$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200VersionsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Versions: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200Versions): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesResponse200VersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceInstallations$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceInstallations$Outbound = { id?: string | undefined; appId?: string | undefined; workspaceId?: string | undefined; versionInstalled?: string | undefined; configuration?: { [k: string]: string; } | undefined; installationStatus?: string | undefined; installedAt?: string | undefined; lastUsed?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceInstallations$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceInstallations$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceInstallations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceInstallations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceInstallations$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceInstallations$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceInstallationsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceInstallations: PutApiLeadScraperMicroserviceApiV1WorkspaceInstallations): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceInstallationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceAnalytics$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceAnalytics$Outbound = { id?: string | undefined; appId?: string | undefined; metricName?: string | undefined; metricValue?: number | undefined; dimensions?: { [k: string]: string; } | undefined; recordedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceAnalytics$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceAnalytics$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceAnalytics$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceAnalytics$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceAnalytics$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceAnalytics$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceAnalyticsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceAnalytics: PutApiLeadScraperMicroserviceApiV1WorkspaceAnalytics): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceAnalyticsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviews$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviews$Outbound = { id?: string | undefined; appId?: string | undefined; reviewerId?: string | undefined; rating?: number | undefined; reviewText?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviews$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviews$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviews$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviews$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviews$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviews$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviewsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviews: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviews): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesReviewsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceInfo$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceInfo$Outbound = { id?: string | undefined; appId?: string | undefined; supportedLanguages?: Array | undefined; sdkFeatures?: Array | undefined; testCoverage?: { [k: string]: number; } | undefined; securityScans?: Array | undefined; performanceMetrics?: { [k: string]: string; } | undefined; developmentStatus?: string | undefined; knownIssues?: Array | undefined; roadmapUrl?: string | undefined; lastSecurityAudit?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceInfo$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceInfo$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceInfo$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceInfo$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceInfo$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceInfo$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceInfoToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceInfo: PutApiLeadScraperMicroserviceApiV1WorkspaceInfo): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceInfoFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooks$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooks$Outbound = { id?: string | undefined; appId?: string | undefined; url?: string | undefined; subscribedEvents?: Array | undefined; secretKey?: string | undefined; retryCount?: number | undefined; timeoutSeconds?: number | undefined; isActive?: boolean | undefined; headers?: { [k: string]: string; } | undefined; lastTriggered?: string | undefined; createdAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooks$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooks$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooks$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooks$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooksToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooks: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooks): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesWebhooksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissions$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissions$Outbound = { id?: string | undefined; appId?: string | undefined; scope?: string | undefined; description?: string | undefined; isRequired?: boolean | undefined; accessLevels?: Array | undefined; constraints?: { [k: string]: string; } | undefined; requiresApproval?: boolean | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissions$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissions$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissions$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissions$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissionsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissions: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissions): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspacesPermissionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceInstalledApps$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceInstalledApps$Outbound = { id?: string | undefined; name?: string | undefined; description?: string | undefined; developerId?: string | undefined; category: string; supportedContractTypes?: Array | undefined; features?: Array | undefined; pricingModel: string; pricingTiers?: { [k: string]: number; } | undefined; supportedIntegrations?: Array | undefined; isVerified?: boolean | undefined; rating?: number | undefined; installationCount?: number | undefined; requiredPermissions?: Array | undefined; metadata?: { [k: string]: string; } | undefined; documentationUrl?: string | undefined; supportEmail?: string | undefined; screenshots?: Array | undefined; privacyPolicyUrl?: string | undefined; termsUrl?: string | undefined; publishedAt?: string | undefined; lastUpdated?: string | undefined; versions?: Array | undefined; installations?: Array | undefined; analytics?: Array | undefined; reviews?: Array | undefined; info?: PutApiLeadScraperMicroserviceApiV1WorkspaceInfo$Outbound | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceInstalledApps$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceInstalledApps$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceInstalledApps$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceInstalledApps$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceInstalledApps$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceInstalledApps$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceInstalledAppsToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceInstalledApps: PutApiLeadScraperMicroserviceApiV1WorkspaceInstalledApps): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceInstalledAppsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspace$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspace$Outbound = { id?: string | undefined; name?: string | undefined; uniqueIdentifier?: string | undefined; s3BucketName?: string | undefined; s3FolderPath?: string | undefined; storageQuota?: string | undefined; usedStorage?: string | undefined; allowPublicSharing?: boolean | undefined; requireApproval?: boolean | undefined; gdprCompliant?: boolean | undefined; hipaaCompliant?: boolean | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; deletedAt?: string | undefined; folders?: Array | undefined; templates?: Array | undefined; sharing?: Array | undefined; activities?: Array | undefined; compliance?: Array | undefined; installedApps?: Array | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspace$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspace$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspace$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspace$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspace$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspace$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspaceToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceWorkspace: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspace): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceWorkspaceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceResponseBody$inboundSchema: z.ZodType; /** @internal */ export type PutApiLeadScraperMicroserviceApiV1WorkspaceResponseBody$Outbound = { workspace?: PutApiLeadScraperMicroserviceApiV1WorkspaceWorkspace$Outbound | undefined; }; /** @internal */ export declare const PutApiLeadScraperMicroserviceApiV1WorkspaceResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace PutApiLeadScraperMicroserviceApiV1WorkspaceResponseBody$ { /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiLeadScraperMicroserviceApiV1WorkspaceResponseBody$Outbound` instead. */ type Outbound = PutApiLeadScraperMicroserviceApiV1WorkspaceResponseBody$Outbound; } export declare function putApiLeadScraperMicroserviceApiV1WorkspaceResponseBodyToJSON(putApiLeadScraperMicroserviceApiV1WorkspaceResponseBody: PutApiLeadScraperMicroserviceApiV1WorkspaceResponseBody): string; export declare function putApiLeadScraperMicroserviceApiV1WorkspaceResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=putapileadscrapermicroserviceapiv1workspace.d.ts.map