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 PutApiWorkspaceServiceV1WorkspacesEmbeddings = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesVersions = { 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 PutApiWorkspaceServiceV1WorkspacesComments = { 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 PutApiWorkspaceServiceV1WorkspacesSharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesSnapshots = { id?: string | undefined; fileId?: string | undefined; snapshotHash?: string | undefined; content?: string | undefined; authorId?: string | undefined; reason?: string | undefined; createdAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesFiles = { 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?: PutApiWorkspaceServiceV1WorkspacesEmbeddings | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesFolders = { 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 PutApiWorkspaceServiceV1WorkspacesTemplateType: { 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 PutApiWorkspaceServiceV1WorkspacesTemplateType = ClosedEnum; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesVersions = { 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 PutApiWorkspaceServiceV1WorkspacesVariables = { 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 PutApiWorkspaceServiceV1WorkspacesStatus: { 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 PutApiWorkspaceServiceV1WorkspacesStatus = ClosedEnum; export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesStatus: { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesStatus = ClosedEnum; export type PutApiWorkspaceServiceV1WorkspacesSignatureBlocks = { 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 PutApiWorkspaceServiceV1WorkspacesWorkflow = { 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 PutApiWorkspaceServiceV1WorkspacesSignatureRequests = { id?: string | undefined; status?: PutApiWorkspaceServiceV1WorkspacesWorkspacesStatus | 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?: PutApiWorkspaceServiceV1WorkspacesWorkflow | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesAiAssistance = { 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 PutApiWorkspaceServiceV1WorkspacesRounds = { 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 PutApiWorkspaceServiceV1WorkspacesNegotiation = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: Date | undefined; lastUpdated?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesMerges = { 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 PutApiWorkspaceServiceV1WorkspacesPolicy = { 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 PutApiWorkspaceServiceV1WorkspacesMergeRequests = { 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 PutApiWorkspaceServiceV1WorkspacesBranches = { 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?: PutApiWorkspaceServiceV1WorkspacesPolicy | undefined; mergeRequests?: Array | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesChanges = { 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 PutApiWorkspaceServiceV1WorkspacesSummaries = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersions = { 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 PutApiWorkspaceServiceV1WorkspacesInstances = { id?: string | undefined; templateId?: string | undefined; status?: PutApiWorkspaceServiceV1WorkspacesStatus | 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?: PutApiWorkspaceServiceV1WorkspacesNegotiation | undefined; versions?: Array | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesExplanations = { 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 PutApiWorkspaceServiceV1WorkspacesRiskAssessments = { 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 PutApiWorkspaceServiceV1WorkspacesComplianceChecks = { id?: string | undefined; intelligenceId?: string | undefined; complianceStandard?: string | undefined; checkResult?: string | undefined; violations?: Array | undefined; remediationSteps?: string | undefined; checkDate?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesIntelligence = { 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 PutApiWorkspaceServiceV1WorkspacesTemplates = { 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?: PutApiWorkspaceServiceV1WorkspacesTemplateType | 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesSharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesActivities = { id?: string | undefined; activityType?: string | undefined; userId?: string | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesCompliance = { id?: string | undefined; complianceType?: string | undefined; status?: string | undefined; certificationId?: string | undefined; validUntil?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export declare const PutApiWorkspaceServiceV1WorkspacesCategory: { 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 PutApiWorkspaceServiceV1WorkspacesCategory = ClosedEnum; export declare const PutApiWorkspaceServiceV1WorkspacesPricingModel: { 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 PutApiWorkspaceServiceV1WorkspacesPricingModel = ClosedEnum; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersions = { 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 PutApiWorkspaceServiceV1WorkspacesInstallations = { 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 PutApiWorkspaceServiceV1WorkspacesAnalytics = { id?: string | undefined; appId?: string | undefined; metricName?: string | undefined; metricValue?: number | undefined; dimensions?: { [k: string]: string; } | undefined; recordedAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesReviews = { id?: string | undefined; appId?: string | undefined; reviewerId?: string | undefined; rating?: number | undefined; reviewText?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesInfo = { 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 PutApiWorkspaceServiceV1WorkspacesWebhooks = { 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 PutApiWorkspaceServiceV1WorkspacesPermissions = { 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 PutApiWorkspaceServiceV1WorkspacesInstalledApps = { id?: string | undefined; name?: string | undefined; description?: string | undefined; developerId?: string | undefined; category?: PutApiWorkspaceServiceV1WorkspacesCategory | undefined; supportedContractTypes?: Array | undefined; features?: Array | undefined; pricingModel?: PutApiWorkspaceServiceV1WorkspacesPricingModel | 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?: PutApiWorkspaceServiceV1WorkspacesInfo | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspace = { 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 PutApiWorkspaceServiceV1WorkspacesRequestBody = { workspace?: PutApiWorkspaceServiceV1WorkspacesWorkspace | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersions = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesComments = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Sharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesSnapshots = { id?: string | undefined; fileId?: string | undefined; snapshotHash?: string | undefined; content?: string | undefined; authorId?: string | undefined; reason?: string | undefined; createdAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesFiles = { 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?: PutApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesFolders = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplateType: { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplateType = ClosedEnum; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesVariables = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseStatus: { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseStatus = ClosedEnum; export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Status: { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Status = ClosedEnum; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocks = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequests = { id?: string | undefined; status?: PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Status | 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?: PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistance = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesRounds = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: Date | undefined; lastUpdated?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesMerges = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesPolicy = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequests = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesBranches = { 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?: PutApiWorkspaceServiceV1WorkspacesWorkspacesPolicy | undefined; mergeRequests?: Array | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesChanges = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesSummaries = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersions = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesInstances = { id?: string | undefined; templateId?: string | undefined; status?: PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseStatus | 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?: PutApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation | undefined; versions?: Array | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesExplanations = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessments = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecks = { id?: string | undefined; intelligenceId?: string | undefined; complianceStandard?: string | undefined; checkResult?: string | undefined; violations?: Array | undefined; remediationSteps?: string | undefined; checkDate?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesIntelligence = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplates = { 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?: PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplateType | 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesActivities = { id?: string | undefined; activityType?: string | undefined; userId?: string | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesCompliance = { id?: string | undefined; complianceType?: string | undefined; status?: string | undefined; certificationId?: string | undefined; validUntil?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesCategory: { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesCategory = ClosedEnum; export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesPricingModel: { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesPricingModel = ClosedEnum; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesInstallations = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesAnalytics = { id?: string | undefined; appId?: string | undefined; metricName?: string | undefined; metricValue?: number | undefined; dimensions?: { [k: string]: string; } | undefined; recordedAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesReviews = { id?: string | undefined; appId?: string | undefined; reviewerId?: string | undefined; rating?: number | undefined; reviewText?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesInfo = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesWebhooks = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesPermissions = { 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 PutApiWorkspaceServiceV1WorkspacesWorkspacesInstalledApps = { id?: string | undefined; name?: string | undefined; description?: string | undefined; developerId?: string | undefined; category?: PutApiWorkspaceServiceV1WorkspacesWorkspacesCategory | undefined; supportedContractTypes?: Array | undefined; features?: Array | undefined; pricingModel?: PutApiWorkspaceServiceV1WorkspacesWorkspacesPricingModel | 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?: PutApiWorkspaceServiceV1WorkspacesWorkspacesInfo | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; export type PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace = { 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 PutApiWorkspaceServiceV1WorkspacesResponseBody = { workspace?: PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesEmbeddings$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesEmbeddings$Outbound = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesEmbeddings$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 PutApiWorkspaceServiceV1WorkspacesEmbeddings$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesEmbeddings$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesEmbeddings$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesEmbeddings$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesEmbeddings$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesEmbeddingsToJSON(putApiWorkspaceServiceV1WorkspacesEmbeddings: PutApiWorkspaceServiceV1WorkspacesEmbeddings): string; export declare function putApiWorkspaceServiceV1WorkspacesEmbeddingsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesVersions$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 PutApiWorkspaceServiceV1WorkspacesVersions$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 PutApiWorkspaceServiceV1WorkspacesVersions$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesVersions$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesVersions$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesVersionsToJSON(putApiWorkspaceServiceV1WorkspacesVersions: PutApiWorkspaceServiceV1WorkspacesVersions): string; export declare function putApiWorkspaceServiceV1WorkspacesVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesComments$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesComments$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 PutApiWorkspaceServiceV1WorkspacesComments$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 PutApiWorkspaceServiceV1WorkspacesComments$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesComments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesComments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesComments$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesComments$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesCommentsToJSON(putApiWorkspaceServiceV1WorkspacesComments: PutApiWorkspaceServiceV1WorkspacesComments): string; export declare function putApiWorkspaceServiceV1WorkspacesCommentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesSharing$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesSharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesSharing$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 PutApiWorkspaceServiceV1WorkspacesSharing$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSharing$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesSharing$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesSharingToJSON(putApiWorkspaceServiceV1WorkspacesSharing: PutApiWorkspaceServiceV1WorkspacesSharing): string; export declare function putApiWorkspaceServiceV1WorkspacesSharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesSnapshots$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesSnapshots$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 PutApiWorkspaceServiceV1WorkspacesSnapshots$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 PutApiWorkspaceServiceV1WorkspacesSnapshots$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSnapshots$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSnapshots$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSnapshots$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesSnapshots$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesSnapshotsToJSON(putApiWorkspaceServiceV1WorkspacesSnapshots: PutApiWorkspaceServiceV1WorkspacesSnapshots): string; export declare function putApiWorkspaceServiceV1WorkspacesSnapshotsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesFiles$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesFiles$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?: PutApiWorkspaceServiceV1WorkspacesEmbeddings$Outbound | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesFiles$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 PutApiWorkspaceServiceV1WorkspacesFiles$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesFiles$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesFiles$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesFiles$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesFiles$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesFilesToJSON(putApiWorkspaceServiceV1WorkspacesFiles: PutApiWorkspaceServiceV1WorkspacesFiles): string; export declare function putApiWorkspaceServiceV1WorkspacesFilesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesFolders$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesFolders$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 PutApiWorkspaceServiceV1WorkspacesFolders$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 PutApiWorkspaceServiceV1WorkspacesFolders$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesFolders$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesFolders$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesFolders$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesFolders$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesFoldersToJSON(putApiWorkspaceServiceV1WorkspacesFolders: PutApiWorkspaceServiceV1WorkspacesFolders): string; export declare function putApiWorkspaceServiceV1WorkspacesFoldersFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesTemplateType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesTemplateType$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 PutApiWorkspaceServiceV1WorkspacesTemplateType$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesTemplateType$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 `PutApiWorkspaceServiceV1WorkspacesTemplateType$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesVersions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesVersions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesVersions$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesVersions$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesVersions$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesVersionsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesVersions: PutApiWorkspaceServiceV1WorkspacesWorkspacesVersions): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesVariables$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesVariables$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 PutApiWorkspaceServiceV1WorkspacesVariables$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 PutApiWorkspaceServiceV1WorkspacesVariables$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesVariables$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesVariables$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesVariables$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesVariables$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesVariablesToJSON(putApiWorkspaceServiceV1WorkspacesVariables: PutApiWorkspaceServiceV1WorkspacesVariables): string; export declare function putApiWorkspaceServiceV1WorkspacesVariablesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesStatus$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 PutApiWorkspaceServiceV1WorkspacesStatus$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesStatus$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 `PutApiWorkspaceServiceV1WorkspacesStatus$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesStatus$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesStatus$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesStatus$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 `PutApiWorkspaceServiceV1WorkspacesWorkspacesStatus$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 PutApiWorkspaceServiceV1WorkspacesSignatureBlocks$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesSignatureBlocks$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 PutApiWorkspaceServiceV1WorkspacesSignatureBlocks$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 PutApiWorkspaceServiceV1WorkspacesSignatureBlocks$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSignatureBlocks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSignatureBlocks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSignatureBlocks$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesSignatureBlocks$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesSignatureBlocksToJSON(putApiWorkspaceServiceV1WorkspacesSignatureBlocks: PutApiWorkspaceServiceV1WorkspacesSignatureBlocks): string; export declare function putApiWorkspaceServiceV1WorkspacesSignatureBlocksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkflow$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkflow$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 PutApiWorkspaceServiceV1WorkspacesWorkflow$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 PutApiWorkspaceServiceV1WorkspacesWorkflow$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkflow$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkflow$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkflow$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkflow$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkflowToJSON(putApiWorkspaceServiceV1WorkspacesWorkflow: PutApiWorkspaceServiceV1WorkspacesWorkflow): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkflowFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesSignatureRequests$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesSignatureRequests$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?: PutApiWorkspaceServiceV1WorkspacesWorkflow$Outbound | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesSignatureRequests$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 PutApiWorkspaceServiceV1WorkspacesSignatureRequests$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSignatureRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSignatureRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSignatureRequests$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesSignatureRequests$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesSignatureRequestsToJSON(putApiWorkspaceServiceV1WorkspacesSignatureRequests: PutApiWorkspaceServiceV1WorkspacesSignatureRequests): string; export declare function putApiWorkspaceServiceV1WorkspacesSignatureRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesAiAssistance$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesAiAssistance$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 PutApiWorkspaceServiceV1WorkspacesAiAssistance$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 PutApiWorkspaceServiceV1WorkspacesAiAssistance$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesAiAssistance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesAiAssistance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesAiAssistance$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesAiAssistance$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesAiAssistanceToJSON(putApiWorkspaceServiceV1WorkspacesAiAssistance: PutApiWorkspaceServiceV1WorkspacesAiAssistance): string; export declare function putApiWorkspaceServiceV1WorkspacesAiAssistanceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesRounds$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesRounds$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 PutApiWorkspaceServiceV1WorkspacesRounds$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 PutApiWorkspaceServiceV1WorkspacesRounds$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesRounds$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesRounds$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesRounds$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesRounds$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesRoundsToJSON(putApiWorkspaceServiceV1WorkspacesRounds: PutApiWorkspaceServiceV1WorkspacesRounds): string; export declare function putApiWorkspaceServiceV1WorkspacesRoundsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesNegotiation$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesNegotiation$Outbound = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: string | undefined; lastUpdated?: string | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesNegotiation$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 PutApiWorkspaceServiceV1WorkspacesNegotiation$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesNegotiation$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesNegotiation$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesNegotiation$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesNegotiation$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesNegotiationToJSON(putApiWorkspaceServiceV1WorkspacesNegotiation: PutApiWorkspaceServiceV1WorkspacesNegotiation): string; export declare function putApiWorkspaceServiceV1WorkspacesNegotiationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesMerges$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesMerges$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 PutApiWorkspaceServiceV1WorkspacesMerges$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 PutApiWorkspaceServiceV1WorkspacesMerges$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesMerges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesMerges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesMerges$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesMerges$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesMergesToJSON(putApiWorkspaceServiceV1WorkspacesMerges: PutApiWorkspaceServiceV1WorkspacesMerges): string; export declare function putApiWorkspaceServiceV1WorkspacesMergesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesPolicy$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesPolicy$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 PutApiWorkspaceServiceV1WorkspacesPolicy$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 PutApiWorkspaceServiceV1WorkspacesPolicy$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesPolicy$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesPolicy$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesPolicy$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesPolicy$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesPolicyToJSON(putApiWorkspaceServiceV1WorkspacesPolicy: PutApiWorkspaceServiceV1WorkspacesPolicy): string; export declare function putApiWorkspaceServiceV1WorkspacesPolicyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesMergeRequests$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesMergeRequests$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 PutApiWorkspaceServiceV1WorkspacesMergeRequests$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 PutApiWorkspaceServiceV1WorkspacesMergeRequests$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesMergeRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesMergeRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesMergeRequests$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesMergeRequests$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesMergeRequestsToJSON(putApiWorkspaceServiceV1WorkspacesMergeRequests: PutApiWorkspaceServiceV1WorkspacesMergeRequests): string; export declare function putApiWorkspaceServiceV1WorkspacesMergeRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesBranches$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesBranches$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?: PutApiWorkspaceServiceV1WorkspacesPolicy$Outbound | undefined; mergeRequests?: Array | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesBranches$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 PutApiWorkspaceServiceV1WorkspacesBranches$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesBranches$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesBranches$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesBranches$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesBranches$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesBranchesToJSON(putApiWorkspaceServiceV1WorkspacesBranches: PutApiWorkspaceServiceV1WorkspacesBranches): string; export declare function putApiWorkspaceServiceV1WorkspacesBranchesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesChanges$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesChanges$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 PutApiWorkspaceServiceV1WorkspacesChanges$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 PutApiWorkspaceServiceV1WorkspacesChanges$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesChanges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesChanges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesChanges$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesChanges$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesChangesToJSON(putApiWorkspaceServiceV1WorkspacesChanges: PutApiWorkspaceServiceV1WorkspacesChanges): string; export declare function putApiWorkspaceServiceV1WorkspacesChangesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesSummaries$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesSummaries$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 PutApiWorkspaceServiceV1WorkspacesSummaries$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 PutApiWorkspaceServiceV1WorkspacesSummaries$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSummaries$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSummaries$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesSummaries$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesSummaries$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesSummariesToJSON(putApiWorkspaceServiceV1WorkspacesSummaries: PutApiWorkspaceServiceV1WorkspacesSummaries): string; export declare function putApiWorkspaceServiceV1WorkspacesSummariesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersions$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersions$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersions$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersionsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersions: PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersions): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesRequestVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesInstances$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesInstances$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?: PutApiWorkspaceServiceV1WorkspacesNegotiation$Outbound | undefined; versions?: Array | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesInstances$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 PutApiWorkspaceServiceV1WorkspacesInstances$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesInstances$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesInstances$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesInstances$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesInstances$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesInstancesToJSON(putApiWorkspaceServiceV1WorkspacesInstances: PutApiWorkspaceServiceV1WorkspacesInstances): string; export declare function putApiWorkspaceServiceV1WorkspacesInstancesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesExplanations$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesExplanations$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 PutApiWorkspaceServiceV1WorkspacesExplanations$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 PutApiWorkspaceServiceV1WorkspacesExplanations$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesExplanations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesExplanations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesExplanations$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesExplanations$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesExplanationsToJSON(putApiWorkspaceServiceV1WorkspacesExplanations: PutApiWorkspaceServiceV1WorkspacesExplanations): string; export declare function putApiWorkspaceServiceV1WorkspacesExplanationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesRiskAssessments$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesRiskAssessments$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 PutApiWorkspaceServiceV1WorkspacesRiskAssessments$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 PutApiWorkspaceServiceV1WorkspacesRiskAssessments$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesRiskAssessments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesRiskAssessments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesRiskAssessments$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesRiskAssessments$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesRiskAssessmentsToJSON(putApiWorkspaceServiceV1WorkspacesRiskAssessments: PutApiWorkspaceServiceV1WorkspacesRiskAssessments): string; export declare function putApiWorkspaceServiceV1WorkspacesRiskAssessmentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesComplianceChecks$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesComplianceChecks$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 PutApiWorkspaceServiceV1WorkspacesComplianceChecks$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 PutApiWorkspaceServiceV1WorkspacesComplianceChecks$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesComplianceChecks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesComplianceChecks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesComplianceChecks$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesComplianceChecks$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesComplianceChecksToJSON(putApiWorkspaceServiceV1WorkspacesComplianceChecks: PutApiWorkspaceServiceV1WorkspacesComplianceChecks): string; export declare function putApiWorkspaceServiceV1WorkspacesComplianceChecksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesIntelligence$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesIntelligence$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 PutApiWorkspaceServiceV1WorkspacesIntelligence$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 PutApiWorkspaceServiceV1WorkspacesIntelligence$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesIntelligence$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesIntelligence$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesIntelligence$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesIntelligence$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesIntelligenceToJSON(putApiWorkspaceServiceV1WorkspacesIntelligence: PutApiWorkspaceServiceV1WorkspacesIntelligence): string; export declare function putApiWorkspaceServiceV1WorkspacesIntelligenceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesTemplates$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesTemplates$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 PutApiWorkspaceServiceV1WorkspacesTemplates$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 PutApiWorkspaceServiceV1WorkspacesTemplates$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesTemplates$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesTemplates$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesTemplates$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesTemplates$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesTemplatesToJSON(putApiWorkspaceServiceV1WorkspacesTemplates: PutApiWorkspaceServiceV1WorkspacesTemplates): string; export declare function putApiWorkspaceServiceV1WorkspacesTemplatesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesSharing$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesSharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesSharing$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesSharing$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSharing$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesSharing$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesSharingToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesSharing: PutApiWorkspaceServiceV1WorkspacesWorkspacesSharing): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesSharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesActivities$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesActivities$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 PutApiWorkspaceServiceV1WorkspacesActivities$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 PutApiWorkspaceServiceV1WorkspacesActivities$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesActivities$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesActivities$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesActivities$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesActivities$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesActivitiesToJSON(putApiWorkspaceServiceV1WorkspacesActivities: PutApiWorkspaceServiceV1WorkspacesActivities): string; export declare function putApiWorkspaceServiceV1WorkspacesActivitiesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesCompliance$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesCompliance$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 PutApiWorkspaceServiceV1WorkspacesCompliance$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 PutApiWorkspaceServiceV1WorkspacesCompliance$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesCompliance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesCompliance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesCompliance$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesCompliance$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesComplianceToJSON(putApiWorkspaceServiceV1WorkspacesCompliance: PutApiWorkspaceServiceV1WorkspacesCompliance): string; export declare function putApiWorkspaceServiceV1WorkspacesComplianceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesCategory$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesCategory$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 PutApiWorkspaceServiceV1WorkspacesCategory$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesCategory$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 `PutApiWorkspaceServiceV1WorkspacesCategory$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 PutApiWorkspaceServiceV1WorkspacesPricingModel$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesPricingModel$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 PutApiWorkspaceServiceV1WorkspacesPricingModel$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesPricingModel$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 `PutApiWorkspaceServiceV1WorkspacesPricingModel$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersions$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersions$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersions$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersionsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersions: PutApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersions): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesRequestRequestBodyVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesInstallations$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesInstallations$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 PutApiWorkspaceServiceV1WorkspacesInstallations$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 PutApiWorkspaceServiceV1WorkspacesInstallations$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesInstallations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesInstallations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesInstallations$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesInstallations$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesInstallationsToJSON(putApiWorkspaceServiceV1WorkspacesInstallations: PutApiWorkspaceServiceV1WorkspacesInstallations): string; export declare function putApiWorkspaceServiceV1WorkspacesInstallationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesAnalytics$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesAnalytics$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 PutApiWorkspaceServiceV1WorkspacesAnalytics$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 PutApiWorkspaceServiceV1WorkspacesAnalytics$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesAnalytics$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesAnalytics$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesAnalytics$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesAnalytics$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesAnalyticsToJSON(putApiWorkspaceServiceV1WorkspacesAnalytics: PutApiWorkspaceServiceV1WorkspacesAnalytics): string; export declare function putApiWorkspaceServiceV1WorkspacesAnalyticsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesReviews$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesReviews$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 PutApiWorkspaceServiceV1WorkspacesReviews$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 PutApiWorkspaceServiceV1WorkspacesReviews$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesReviews$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesReviews$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesReviews$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesReviews$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesReviewsToJSON(putApiWorkspaceServiceV1WorkspacesReviews: PutApiWorkspaceServiceV1WorkspacesReviews): string; export declare function putApiWorkspaceServiceV1WorkspacesReviewsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesInfo$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesInfo$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 PutApiWorkspaceServiceV1WorkspacesInfo$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 PutApiWorkspaceServiceV1WorkspacesInfo$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesInfo$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesInfo$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesInfo$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesInfo$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesInfoToJSON(putApiWorkspaceServiceV1WorkspacesInfo: PutApiWorkspaceServiceV1WorkspacesInfo): string; export declare function putApiWorkspaceServiceV1WorkspacesInfoFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWebhooks$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWebhooks$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 PutApiWorkspaceServiceV1WorkspacesWebhooks$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 PutApiWorkspaceServiceV1WorkspacesWebhooks$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWebhooks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWebhooks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWebhooks$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWebhooks$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWebhooksToJSON(putApiWorkspaceServiceV1WorkspacesWebhooks: PutApiWorkspaceServiceV1WorkspacesWebhooks): string; export declare function putApiWorkspaceServiceV1WorkspacesWebhooksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesPermissions$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesPermissions$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 PutApiWorkspaceServiceV1WorkspacesPermissions$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 PutApiWorkspaceServiceV1WorkspacesPermissions$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesPermissions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesPermissions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesPermissions$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesPermissions$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesPermissionsToJSON(putApiWorkspaceServiceV1WorkspacesPermissions: PutApiWorkspaceServiceV1WorkspacesPermissions): string; export declare function putApiWorkspaceServiceV1WorkspacesPermissionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesInstalledApps$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesInstalledApps$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?: PutApiWorkspaceServiceV1WorkspacesInfo$Outbound | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesInstalledApps$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 PutApiWorkspaceServiceV1WorkspacesInstalledApps$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesInstalledApps$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesInstalledApps$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesInstalledApps$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesInstalledApps$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesInstalledAppsToJSON(putApiWorkspaceServiceV1WorkspacesInstalledApps: PutApiWorkspaceServiceV1WorkspacesInstalledApps): string; export declare function putApiWorkspaceServiceV1WorkspacesInstalledAppsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspace$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspace$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 PutApiWorkspaceServiceV1WorkspacesWorkspace$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 PutApiWorkspaceServiceV1WorkspacesWorkspace$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspace$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspace$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspace$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspace$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspaceToJSON(putApiWorkspaceServiceV1WorkspacesWorkspace: PutApiWorkspaceServiceV1WorkspacesWorkspace): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspaceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesRequestBody$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesRequestBody$Outbound = { workspace?: PutApiWorkspaceServiceV1WorkspacesWorkspace$Outbound | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesRequestBody$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 PutApiWorkspaceServiceV1WorkspacesRequestBody$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesRequestBody$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesRequestBody$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesRequestBodyToJSON(putApiWorkspaceServiceV1WorkspacesRequestBody: PutApiWorkspaceServiceV1WorkspacesRequestBody): string; export declare function putApiWorkspaceServiceV1WorkspacesRequestBodyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings$Outbound = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddingsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings: PutApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddingsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersions$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersions$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersions$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersionsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersions: PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersions): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONResponseBodyVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesComments$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesComments$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesComments$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesComments$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesComments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesComments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesComments$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesComments$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesCommentsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesComments: PutApiWorkspaceServiceV1WorkspacesWorkspacesComments): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesCommentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Sharing$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Sharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Sharing$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Sharing$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Sharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Sharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Sharing$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Sharing$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesResponse200SharingToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Sharing: PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Sharing): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesResponse200SharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesSnapshots$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesSnapshots$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesSnapshots$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesSnapshots$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSnapshots$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSnapshots$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSnapshots$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesSnapshots$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesSnapshotsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesSnapshots: PutApiWorkspaceServiceV1WorkspacesWorkspacesSnapshots): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesSnapshotsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesFiles$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesFiles$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?: PutApiWorkspaceServiceV1WorkspacesWorkspacesEmbeddings$Outbound | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesFiles$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesFiles$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesFiles$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesFiles$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesFiles$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesFiles$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesFilesToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesFiles: PutApiWorkspaceServiceV1WorkspacesWorkspacesFiles): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesFilesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesFolders$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesFolders$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesFolders$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesFolders$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesFolders$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesFolders$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesFolders$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesFolders$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesFoldersToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesFolders: PutApiWorkspaceServiceV1WorkspacesWorkspacesFolders): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesFoldersFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplateType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplateType$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplateType$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplateType$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 `PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplateType$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersionsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions: PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesVariables$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesVariables$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesVariables$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesVariables$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesVariables$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesVariables$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesVariables$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesVariables$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesVariablesToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesVariables: PutApiWorkspaceServiceV1WorkspacesWorkspacesVariables): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesVariablesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseStatus$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseStatus$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseStatus$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 `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseStatus$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Status$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Status$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Status$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Status$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 `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Status$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocks$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocks$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocks$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocks$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocks$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocks$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocksToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocks: PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocks): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesSignatureBlocksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesWorkflowToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow: PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesWorkflowFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequests$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequests$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?: PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkflow$Outbound | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequests$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequests$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequests$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequests$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequestsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequests: PutApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequests): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesSignatureRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistance$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistance$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistance$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistance$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistance$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistance$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistanceToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistance: PutApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistance): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesAiAssistanceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesRounds$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesRounds$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesRounds$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesRounds$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesRounds$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesRounds$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesRounds$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesRounds$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesRoundsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesRounds: PutApiWorkspaceServiceV1WorkspacesWorkspacesRounds): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesRoundsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation$Outbound = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: string | undefined; lastUpdated?: string | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesNegotiationToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation: PutApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesNegotiationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesMerges$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesMerges$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesMerges$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesMerges$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesMerges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesMerges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesMerges$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesMerges$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesMergesToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesMerges: PutApiWorkspaceServiceV1WorkspacesWorkspacesMerges): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesMergesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesPolicy$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesPolicy$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesPolicy$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesPolicy$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesPolicy$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesPolicy$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesPolicy$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesPolicy$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesPolicyToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesPolicy: PutApiWorkspaceServiceV1WorkspacesWorkspacesPolicy): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesPolicyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequests$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequests$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequests$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequests$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequests$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequests$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequestsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequests: PutApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequests): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesMergeRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesBranches$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesBranches$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?: PutApiWorkspaceServiceV1WorkspacesWorkspacesPolicy$Outbound | undefined; mergeRequests?: Array | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesBranches$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesBranches$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesBranches$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesBranches$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesBranches$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesBranches$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesBranchesToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesBranches: PutApiWorkspaceServiceV1WorkspacesWorkspacesBranches): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesBranchesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesChanges$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesChanges$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesChanges$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesChanges$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesChanges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesChanges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesChanges$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesChanges$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesChangesToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesChanges: PutApiWorkspaceServiceV1WorkspacesWorkspacesChanges): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesChangesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesSummaries$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesSummaries$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesSummaries$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesSummaries$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSummaries$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSummaries$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesSummaries$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesSummaries$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesSummariesToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesSummaries: PutApiWorkspaceServiceV1WorkspacesWorkspacesSummaries): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesSummariesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersions$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersions$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersions$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersions$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersionsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersions: PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersions): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesResponse200ApplicationJSONVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesInstances$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesInstances$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?: PutApiWorkspaceServiceV1WorkspacesWorkspacesNegotiation$Outbound | undefined; versions?: Array | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesInstances$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesInstances$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesInstances$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesInstances$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesInstances$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesInstances$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesInstancesToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesInstances: PutApiWorkspaceServiceV1WorkspacesWorkspacesInstances): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesInstancesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesExplanations$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesExplanations$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesExplanations$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesExplanations$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesExplanations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesExplanations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesExplanations$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesExplanations$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesExplanationsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesExplanations: PutApiWorkspaceServiceV1WorkspacesWorkspacesExplanations): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesExplanationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessments$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessments$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessments$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessments$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessments$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessments$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessmentsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessments: PutApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessments): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesRiskAssessmentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecks$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecks$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecks$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecks$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecks$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecks$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecksToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecks: PutApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecks): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesComplianceChecksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesIntelligence$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesIntelligence$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesIntelligence$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesIntelligence$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesIntelligence$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesIntelligence$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesIntelligence$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesIntelligence$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesIntelligenceToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesIntelligence: PutApiWorkspaceServiceV1WorkspacesWorkspacesIntelligence): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesIntelligenceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplates$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplates$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplates$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplates$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplates$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplates$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplates$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplates$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesTemplatesToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesTemplates: PutApiWorkspaceServiceV1WorkspacesWorkspacesTemplates): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesTemplatesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharing$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharing$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharing$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharing$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharing$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharingToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharing: PutApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharing): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesResponseSharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesActivities$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesActivities$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesActivities$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesActivities$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesActivities$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesActivities$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesActivities$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesActivities$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesActivitiesToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesActivities: PutApiWorkspaceServiceV1WorkspacesWorkspacesActivities): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesActivitiesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesCompliance$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesCompliance$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesCompliance$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesCompliance$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesCompliance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesCompliance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesCompliance$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesCompliance$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesComplianceToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesCompliance: PutApiWorkspaceServiceV1WorkspacesWorkspacesCompliance): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesComplianceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesCategory$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesCategory$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesCategory$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesCategory$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 `PutApiWorkspaceServiceV1WorkspacesWorkspacesCategory$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesPricingModel$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesPricingModel$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesPricingModel$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesPricingModel$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 `PutApiWorkspaceServiceV1WorkspacesWorkspacesPricingModel$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesResponse200VersionsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions: PutApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesResponse200VersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesInstallations$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesInstallations$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesInstallations$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesInstallations$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesInstallations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesInstallations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesInstallations$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesInstallations$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesInstallationsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesInstallations: PutApiWorkspaceServiceV1WorkspacesWorkspacesInstallations): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesInstallationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesAnalytics$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesAnalytics$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesAnalytics$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesAnalytics$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesAnalytics$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesAnalytics$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesAnalytics$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesAnalytics$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesAnalyticsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesAnalytics: PutApiWorkspaceServiceV1WorkspacesWorkspacesAnalytics): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesAnalyticsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesReviews$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesReviews$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesReviews$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesReviews$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesReviews$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesReviews$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesReviews$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesReviews$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesReviewsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesReviews: PutApiWorkspaceServiceV1WorkspacesWorkspacesReviews): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesReviewsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesInfo$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesInfo$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesInfo$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesInfo$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesInfo$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesInfo$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesInfo$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesInfo$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesInfoToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesInfo: PutApiWorkspaceServiceV1WorkspacesWorkspacesInfo): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesInfoFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesWebhooks$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesWebhooks$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesWebhooks$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesWebhooks$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesWebhooks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesWebhooks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesWebhooks$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesWebhooks$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesWebhooksToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesWebhooks: PutApiWorkspaceServiceV1WorkspacesWorkspacesWebhooks): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesWebhooksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesPermissions$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesPermissions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesPermissions$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesPermissions$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesPermissions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesPermissions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesPermissions$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesPermissions$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesPermissionsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesPermissions: PutApiWorkspaceServiceV1WorkspacesWorkspacesPermissions): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesPermissionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesInstalledApps$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesInstalledApps$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?: PutApiWorkspaceServiceV1WorkspacesWorkspacesInfo$Outbound | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesInstalledApps$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesInstalledApps$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesInstalledApps$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesInstalledApps$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesInstalledApps$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesInstalledApps$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesInstalledAppsToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesInstalledApps: PutApiWorkspaceServiceV1WorkspacesWorkspacesInstalledApps): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesInstalledAppsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace$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 PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesWorkspaceToJSON(putApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace: PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace): string; export declare function putApiWorkspaceServiceV1WorkspacesWorkspacesWorkspaceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesResponseBody$inboundSchema: z.ZodType; /** @internal */ export type PutApiWorkspaceServiceV1WorkspacesResponseBody$Outbound = { workspace?: PutApiWorkspaceServiceV1WorkspacesWorkspacesWorkspace$Outbound | undefined; }; /** @internal */ export declare const PutApiWorkspaceServiceV1WorkspacesResponseBody$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 PutApiWorkspaceServiceV1WorkspacesResponseBody$ { /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PutApiWorkspaceServiceV1WorkspacesResponseBody$Outbound` instead. */ type Outbound = PutApiWorkspaceServiceV1WorkspacesResponseBody$Outbound; } export declare function putApiWorkspaceServiceV1WorkspacesResponseBodyToJSON(putApiWorkspaceServiceV1WorkspacesResponseBody: PutApiWorkspaceServiceV1WorkspacesResponseBody): string; export declare function putApiWorkspaceServiceV1WorkspacesResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=putapiworkspaceservicev1workspaces.d.ts.map