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 PostApiWorkspaceServiceV1WorkspacesRequestBody = { accountId?: string | undefined; name: string; storageQuota?: string | undefined; allowPublicSharing?: boolean | undefined; requireApproval?: boolean | undefined; gdprCompliant?: boolean | undefined; hipaaCompliant?: boolean | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesEmbeddings = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions = { 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 PostApiWorkspaceServiceV1WorkspacesComments = { 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 PostApiWorkspaceServiceV1WorkspacesWorkspacesSharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesSnapshots = { id?: string | undefined; fileId?: string | undefined; snapshotHash?: string | undefined; content?: string | undefined; authorId?: string | undefined; reason?: string | undefined; createdAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesFiles = { 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?: PostApiWorkspaceServiceV1WorkspacesEmbeddings | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesFolders = { 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 PostApiWorkspaceServiceV1WorkspacesTemplateType: { 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 PostApiWorkspaceServiceV1WorkspacesTemplateType = ClosedEnum; export type PostApiWorkspaceServiceV1WorkspacesVersions = { 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 PostApiWorkspaceServiceV1WorkspacesVariables = { 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 PostApiWorkspaceServiceV1WorkspacesStatus: { 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 PostApiWorkspaceServiceV1WorkspacesStatus = ClosedEnum; export declare const PostApiWorkspaceServiceV1WorkspacesWorkspacesStatus: { 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 PostApiWorkspaceServiceV1WorkspacesWorkspacesStatus = ClosedEnum; export type PostApiWorkspaceServiceV1WorkspacesSignatureBlocks = { 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 PostApiWorkspaceServiceV1WorkspacesWorkflow = { 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 PostApiWorkspaceServiceV1WorkspacesSignatureRequests = { id?: string | undefined; status?: PostApiWorkspaceServiceV1WorkspacesWorkspacesStatus | 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?: PostApiWorkspaceServiceV1WorkspacesWorkflow | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesAiAssistance = { 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 PostApiWorkspaceServiceV1WorkspacesRounds = { 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 PostApiWorkspaceServiceV1WorkspacesNegotiation = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: Date | undefined; lastUpdated?: Date | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesMerges = { 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 PostApiWorkspaceServiceV1WorkspacesPolicy = { 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 PostApiWorkspaceServiceV1WorkspacesMergeRequests = { 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 PostApiWorkspaceServiceV1WorkspacesBranches = { 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?: PostApiWorkspaceServiceV1WorkspacesPolicy | undefined; mergeRequests?: Array | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesChanges = { 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 PostApiWorkspaceServiceV1WorkspacesSummaries = { 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 PostApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions = { 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 PostApiWorkspaceServiceV1WorkspacesInstances = { id?: string | undefined; templateId?: string | undefined; status?: PostApiWorkspaceServiceV1WorkspacesStatus | 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?: PostApiWorkspaceServiceV1WorkspacesNegotiation | undefined; versions?: Array | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesExplanations = { 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 PostApiWorkspaceServiceV1WorkspacesRiskAssessments = { 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 PostApiWorkspaceServiceV1WorkspacesComplianceChecks = { id?: string | undefined; intelligenceId?: string | undefined; complianceStandard?: string | undefined; checkResult?: string | undefined; violations?: Array | undefined; remediationSteps?: string | undefined; checkDate?: Date | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesIntelligence = { 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 PostApiWorkspaceServiceV1WorkspacesTemplates = { 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?: PostApiWorkspaceServiceV1WorkspacesTemplateType | 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 PostApiWorkspaceServiceV1WorkspacesSharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesActivities = { id?: string | undefined; activityType?: string | undefined; userId?: string | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesCompliance = { id?: string | undefined; complianceType?: string | undefined; status?: string | undefined; certificationId?: string | undefined; validUntil?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export declare const PostApiWorkspaceServiceV1WorkspacesCategory: { 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 PostApiWorkspaceServiceV1WorkspacesCategory = ClosedEnum; export declare const PostApiWorkspaceServiceV1WorkspacesPricingModel: { 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 PostApiWorkspaceServiceV1WorkspacesPricingModel = ClosedEnum; export type PostApiWorkspaceServiceV1WorkspacesWorkspacesVersions = { 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 PostApiWorkspaceServiceV1WorkspacesInstallations = { 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 PostApiWorkspaceServiceV1WorkspacesAnalytics = { id?: string | undefined; appId?: string | undefined; metricName?: string | undefined; metricValue?: number | undefined; dimensions?: { [k: string]: string; } | undefined; recordedAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesReviews = { id?: string | undefined; appId?: string | undefined; reviewerId?: string | undefined; rating?: number | undefined; reviewText?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesInfo = { 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 PostApiWorkspaceServiceV1WorkspacesWebhooks = { 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 PostApiWorkspaceServiceV1WorkspacesPermissions = { 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 PostApiWorkspaceServiceV1WorkspacesInstalledApps = { id?: string | undefined; name?: string | undefined; description?: string | undefined; developerId?: string | undefined; category?: PostApiWorkspaceServiceV1WorkspacesCategory | undefined; supportedContractTypes?: Array | undefined; features?: Array | undefined; pricingModel?: PostApiWorkspaceServiceV1WorkspacesPricingModel | 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?: PostApiWorkspaceServiceV1WorkspacesInfo | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; export type PostApiWorkspaceServiceV1WorkspacesWorkspace = { 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 PostApiWorkspaceServiceV1WorkspacesResponseBody = { workspace?: PostApiWorkspaceServiceV1WorkspacesWorkspace | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesRequestBody$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesRequestBody$Outbound = { accountId?: string | undefined; name: string; storageQuota?: string | undefined; allowPublicSharing?: boolean | undefined; requireApproval?: boolean | undefined; gdprCompliant?: boolean | undefined; hipaaCompliant?: boolean | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesRequestBody$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 PostApiWorkspaceServiceV1WorkspacesRequestBody$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesRequestBody$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesRequestBody$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesRequestBodyToJSON(postApiWorkspaceServiceV1WorkspacesRequestBody: PostApiWorkspaceServiceV1WorkspacesRequestBody): string; export declare function postApiWorkspaceServiceV1WorkspacesRequestBodyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesEmbeddings$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesEmbeddings$Outbound = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesEmbeddings$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 PostApiWorkspaceServiceV1WorkspacesEmbeddings$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesEmbeddings$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesEmbeddings$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesEmbeddings$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesEmbeddings$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesEmbeddingsToJSON(postApiWorkspaceServiceV1WorkspacesEmbeddings: PostApiWorkspaceServiceV1WorkspacesEmbeddings): string; export declare function postApiWorkspaceServiceV1WorkspacesEmbeddingsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$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 PostApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$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 PostApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesWorkspacesResponse200VersionsToJSON(postApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions: PostApiWorkspaceServiceV1WorkspacesWorkspacesResponse200Versions): string; export declare function postApiWorkspaceServiceV1WorkspacesWorkspacesResponse200VersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesComments$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesComments$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 PostApiWorkspaceServiceV1WorkspacesComments$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 PostApiWorkspaceServiceV1WorkspacesComments$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesComments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesComments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesComments$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesComments$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesCommentsToJSON(postApiWorkspaceServiceV1WorkspacesComments: PostApiWorkspaceServiceV1WorkspacesComments): string; export declare function postApiWorkspaceServiceV1WorkspacesCommentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesWorkspacesSharing$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesWorkspacesSharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesWorkspacesSharing$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 PostApiWorkspaceServiceV1WorkspacesWorkspacesSharing$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesSharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesSharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesSharing$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesWorkspacesSharing$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesWorkspacesSharingToJSON(postApiWorkspaceServiceV1WorkspacesWorkspacesSharing: PostApiWorkspaceServiceV1WorkspacesWorkspacesSharing): string; export declare function postApiWorkspaceServiceV1WorkspacesWorkspacesSharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesSnapshots$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesSnapshots$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 PostApiWorkspaceServiceV1WorkspacesSnapshots$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 PostApiWorkspaceServiceV1WorkspacesSnapshots$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSnapshots$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSnapshots$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSnapshots$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesSnapshots$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesSnapshotsToJSON(postApiWorkspaceServiceV1WorkspacesSnapshots: PostApiWorkspaceServiceV1WorkspacesSnapshots): string; export declare function postApiWorkspaceServiceV1WorkspacesSnapshotsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesFiles$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesFiles$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?: PostApiWorkspaceServiceV1WorkspacesEmbeddings$Outbound | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesFiles$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 PostApiWorkspaceServiceV1WorkspacesFiles$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesFiles$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesFiles$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesFiles$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesFiles$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesFilesToJSON(postApiWorkspaceServiceV1WorkspacesFiles: PostApiWorkspaceServiceV1WorkspacesFiles): string; export declare function postApiWorkspaceServiceV1WorkspacesFilesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesFolders$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesFolders$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 PostApiWorkspaceServiceV1WorkspacesFolders$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 PostApiWorkspaceServiceV1WorkspacesFolders$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesFolders$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesFolders$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesFolders$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesFolders$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesFoldersToJSON(postApiWorkspaceServiceV1WorkspacesFolders: PostApiWorkspaceServiceV1WorkspacesFolders): string; export declare function postApiWorkspaceServiceV1WorkspacesFoldersFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesTemplateType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesTemplateType$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 PostApiWorkspaceServiceV1WorkspacesTemplateType$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesTemplateType$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 `PostApiWorkspaceServiceV1WorkspacesTemplateType$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 PostApiWorkspaceServiceV1WorkspacesVersions$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesVersions$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 PostApiWorkspaceServiceV1WorkspacesVersions$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 PostApiWorkspaceServiceV1WorkspacesVersions$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesVersions$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesVersions$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesVersionsToJSON(postApiWorkspaceServiceV1WorkspacesVersions: PostApiWorkspaceServiceV1WorkspacesVersions): string; export declare function postApiWorkspaceServiceV1WorkspacesVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesVariables$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesVariables$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 PostApiWorkspaceServiceV1WorkspacesVariables$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 PostApiWorkspaceServiceV1WorkspacesVariables$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesVariables$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesVariables$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesVariables$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesVariables$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesVariablesToJSON(postApiWorkspaceServiceV1WorkspacesVariables: PostApiWorkspaceServiceV1WorkspacesVariables): string; export declare function postApiWorkspaceServiceV1WorkspacesVariablesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesStatus$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 PostApiWorkspaceServiceV1WorkspacesStatus$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesStatus$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 `PostApiWorkspaceServiceV1WorkspacesStatus$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 PostApiWorkspaceServiceV1WorkspacesWorkspacesStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesWorkspacesStatus$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 PostApiWorkspaceServiceV1WorkspacesWorkspacesStatus$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesStatus$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 `PostApiWorkspaceServiceV1WorkspacesWorkspacesStatus$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 PostApiWorkspaceServiceV1WorkspacesSignatureBlocks$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesSignatureBlocks$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 PostApiWorkspaceServiceV1WorkspacesSignatureBlocks$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 PostApiWorkspaceServiceV1WorkspacesSignatureBlocks$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSignatureBlocks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSignatureBlocks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSignatureBlocks$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesSignatureBlocks$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesSignatureBlocksToJSON(postApiWorkspaceServiceV1WorkspacesSignatureBlocks: PostApiWorkspaceServiceV1WorkspacesSignatureBlocks): string; export declare function postApiWorkspaceServiceV1WorkspacesSignatureBlocksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesWorkflow$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesWorkflow$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 PostApiWorkspaceServiceV1WorkspacesWorkflow$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 PostApiWorkspaceServiceV1WorkspacesWorkflow$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkflow$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkflow$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkflow$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesWorkflow$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesWorkflowToJSON(postApiWorkspaceServiceV1WorkspacesWorkflow: PostApiWorkspaceServiceV1WorkspacesWorkflow): string; export declare function postApiWorkspaceServiceV1WorkspacesWorkflowFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesSignatureRequests$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesSignatureRequests$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?: PostApiWorkspaceServiceV1WorkspacesWorkflow$Outbound | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesSignatureRequests$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 PostApiWorkspaceServiceV1WorkspacesSignatureRequests$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSignatureRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSignatureRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSignatureRequests$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesSignatureRequests$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesSignatureRequestsToJSON(postApiWorkspaceServiceV1WorkspacesSignatureRequests: PostApiWorkspaceServiceV1WorkspacesSignatureRequests): string; export declare function postApiWorkspaceServiceV1WorkspacesSignatureRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesAiAssistance$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesAiAssistance$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 PostApiWorkspaceServiceV1WorkspacesAiAssistance$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 PostApiWorkspaceServiceV1WorkspacesAiAssistance$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesAiAssistance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesAiAssistance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesAiAssistance$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesAiAssistance$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesAiAssistanceToJSON(postApiWorkspaceServiceV1WorkspacesAiAssistance: PostApiWorkspaceServiceV1WorkspacesAiAssistance): string; export declare function postApiWorkspaceServiceV1WorkspacesAiAssistanceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesRounds$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesRounds$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 PostApiWorkspaceServiceV1WorkspacesRounds$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 PostApiWorkspaceServiceV1WorkspacesRounds$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesRounds$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesRounds$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesRounds$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesRounds$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesRoundsToJSON(postApiWorkspaceServiceV1WorkspacesRounds: PostApiWorkspaceServiceV1WorkspacesRounds): string; export declare function postApiWorkspaceServiceV1WorkspacesRoundsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesNegotiation$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesNegotiation$Outbound = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: string | undefined; lastUpdated?: string | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesNegotiation$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 PostApiWorkspaceServiceV1WorkspacesNegotiation$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesNegotiation$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesNegotiation$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesNegotiation$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesNegotiation$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesNegotiationToJSON(postApiWorkspaceServiceV1WorkspacesNegotiation: PostApiWorkspaceServiceV1WorkspacesNegotiation): string; export declare function postApiWorkspaceServiceV1WorkspacesNegotiationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesMerges$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesMerges$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 PostApiWorkspaceServiceV1WorkspacesMerges$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 PostApiWorkspaceServiceV1WorkspacesMerges$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesMerges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesMerges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesMerges$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesMerges$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesMergesToJSON(postApiWorkspaceServiceV1WorkspacesMerges: PostApiWorkspaceServiceV1WorkspacesMerges): string; export declare function postApiWorkspaceServiceV1WorkspacesMergesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesPolicy$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesPolicy$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 PostApiWorkspaceServiceV1WorkspacesPolicy$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 PostApiWorkspaceServiceV1WorkspacesPolicy$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesPolicy$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesPolicy$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesPolicy$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesPolicy$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesPolicyToJSON(postApiWorkspaceServiceV1WorkspacesPolicy: PostApiWorkspaceServiceV1WorkspacesPolicy): string; export declare function postApiWorkspaceServiceV1WorkspacesPolicyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesMergeRequests$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesMergeRequests$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 PostApiWorkspaceServiceV1WorkspacesMergeRequests$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 PostApiWorkspaceServiceV1WorkspacesMergeRequests$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesMergeRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesMergeRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesMergeRequests$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesMergeRequests$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesMergeRequestsToJSON(postApiWorkspaceServiceV1WorkspacesMergeRequests: PostApiWorkspaceServiceV1WorkspacesMergeRequests): string; export declare function postApiWorkspaceServiceV1WorkspacesMergeRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesBranches$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesBranches$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?: PostApiWorkspaceServiceV1WorkspacesPolicy$Outbound | undefined; mergeRequests?: Array | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesBranches$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 PostApiWorkspaceServiceV1WorkspacesBranches$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesBranches$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesBranches$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesBranches$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesBranches$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesBranchesToJSON(postApiWorkspaceServiceV1WorkspacesBranches: PostApiWorkspaceServiceV1WorkspacesBranches): string; export declare function postApiWorkspaceServiceV1WorkspacesBranchesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesChanges$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesChanges$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 PostApiWorkspaceServiceV1WorkspacesChanges$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 PostApiWorkspaceServiceV1WorkspacesChanges$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesChanges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesChanges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesChanges$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesChanges$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesChangesToJSON(postApiWorkspaceServiceV1WorkspacesChanges: PostApiWorkspaceServiceV1WorkspacesChanges): string; export declare function postApiWorkspaceServiceV1WorkspacesChangesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesSummaries$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesSummaries$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 PostApiWorkspaceServiceV1WorkspacesSummaries$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 PostApiWorkspaceServiceV1WorkspacesSummaries$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSummaries$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSummaries$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSummaries$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesSummaries$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesSummariesToJSON(postApiWorkspaceServiceV1WorkspacesSummaries: PostApiWorkspaceServiceV1WorkspacesSummaries): string; export declare function postApiWorkspaceServiceV1WorkspacesSummariesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$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 PostApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$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 PostApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersionsToJSON(postApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions: PostApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersions): string; export declare function postApiWorkspaceServiceV1WorkspacesWorkspacesResponseVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesInstances$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesInstances$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?: PostApiWorkspaceServiceV1WorkspacesNegotiation$Outbound | undefined; versions?: Array | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesInstances$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 PostApiWorkspaceServiceV1WorkspacesInstances$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesInstances$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesInstances$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesInstances$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesInstances$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesInstancesToJSON(postApiWorkspaceServiceV1WorkspacesInstances: PostApiWorkspaceServiceV1WorkspacesInstances): string; export declare function postApiWorkspaceServiceV1WorkspacesInstancesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesExplanations$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesExplanations$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 PostApiWorkspaceServiceV1WorkspacesExplanations$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 PostApiWorkspaceServiceV1WorkspacesExplanations$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesExplanations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesExplanations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesExplanations$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesExplanations$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesExplanationsToJSON(postApiWorkspaceServiceV1WorkspacesExplanations: PostApiWorkspaceServiceV1WorkspacesExplanations): string; export declare function postApiWorkspaceServiceV1WorkspacesExplanationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesRiskAssessments$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesRiskAssessments$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 PostApiWorkspaceServiceV1WorkspacesRiskAssessments$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 PostApiWorkspaceServiceV1WorkspacesRiskAssessments$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesRiskAssessments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesRiskAssessments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesRiskAssessments$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesRiskAssessments$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesRiskAssessmentsToJSON(postApiWorkspaceServiceV1WorkspacesRiskAssessments: PostApiWorkspaceServiceV1WorkspacesRiskAssessments): string; export declare function postApiWorkspaceServiceV1WorkspacesRiskAssessmentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesComplianceChecks$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesComplianceChecks$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 PostApiWorkspaceServiceV1WorkspacesComplianceChecks$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 PostApiWorkspaceServiceV1WorkspacesComplianceChecks$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesComplianceChecks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesComplianceChecks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesComplianceChecks$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesComplianceChecks$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesComplianceChecksToJSON(postApiWorkspaceServiceV1WorkspacesComplianceChecks: PostApiWorkspaceServiceV1WorkspacesComplianceChecks): string; export declare function postApiWorkspaceServiceV1WorkspacesComplianceChecksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesIntelligence$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesIntelligence$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 PostApiWorkspaceServiceV1WorkspacesIntelligence$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 PostApiWorkspaceServiceV1WorkspacesIntelligence$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesIntelligence$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesIntelligence$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesIntelligence$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesIntelligence$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesIntelligenceToJSON(postApiWorkspaceServiceV1WorkspacesIntelligence: PostApiWorkspaceServiceV1WorkspacesIntelligence): string; export declare function postApiWorkspaceServiceV1WorkspacesIntelligenceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesTemplates$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesTemplates$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 PostApiWorkspaceServiceV1WorkspacesTemplates$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 PostApiWorkspaceServiceV1WorkspacesTemplates$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesTemplates$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesTemplates$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesTemplates$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesTemplates$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesTemplatesToJSON(postApiWorkspaceServiceV1WorkspacesTemplates: PostApiWorkspaceServiceV1WorkspacesTemplates): string; export declare function postApiWorkspaceServiceV1WorkspacesTemplatesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesSharing$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesSharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesSharing$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 PostApiWorkspaceServiceV1WorkspacesSharing$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesSharing$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesSharing$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesSharingToJSON(postApiWorkspaceServiceV1WorkspacesSharing: PostApiWorkspaceServiceV1WorkspacesSharing): string; export declare function postApiWorkspaceServiceV1WorkspacesSharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesActivities$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesActivities$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 PostApiWorkspaceServiceV1WorkspacesActivities$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 PostApiWorkspaceServiceV1WorkspacesActivities$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesActivities$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesActivities$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesActivities$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesActivities$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesActivitiesToJSON(postApiWorkspaceServiceV1WorkspacesActivities: PostApiWorkspaceServiceV1WorkspacesActivities): string; export declare function postApiWorkspaceServiceV1WorkspacesActivitiesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesCompliance$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesCompliance$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 PostApiWorkspaceServiceV1WorkspacesCompliance$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 PostApiWorkspaceServiceV1WorkspacesCompliance$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesCompliance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesCompliance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesCompliance$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesCompliance$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesComplianceToJSON(postApiWorkspaceServiceV1WorkspacesCompliance: PostApiWorkspaceServiceV1WorkspacesCompliance): string; export declare function postApiWorkspaceServiceV1WorkspacesComplianceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesCategory$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesCategory$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 PostApiWorkspaceServiceV1WorkspacesCategory$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesCategory$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 `PostApiWorkspaceServiceV1WorkspacesCategory$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 PostApiWorkspaceServiceV1WorkspacesPricingModel$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesPricingModel$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 PostApiWorkspaceServiceV1WorkspacesPricingModel$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesPricingModel$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 `PostApiWorkspaceServiceV1WorkspacesPricingModel$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 PostApiWorkspaceServiceV1WorkspacesWorkspacesVersions$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesWorkspacesVersions$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 PostApiWorkspaceServiceV1WorkspacesWorkspacesVersions$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 PostApiWorkspaceServiceV1WorkspacesWorkspacesVersions$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspacesVersions$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesWorkspacesVersions$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesWorkspacesVersionsToJSON(postApiWorkspaceServiceV1WorkspacesWorkspacesVersions: PostApiWorkspaceServiceV1WorkspacesWorkspacesVersions): string; export declare function postApiWorkspaceServiceV1WorkspacesWorkspacesVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesInstallations$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesInstallations$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 PostApiWorkspaceServiceV1WorkspacesInstallations$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 PostApiWorkspaceServiceV1WorkspacesInstallations$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesInstallations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesInstallations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesInstallations$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesInstallations$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesInstallationsToJSON(postApiWorkspaceServiceV1WorkspacesInstallations: PostApiWorkspaceServiceV1WorkspacesInstallations): string; export declare function postApiWorkspaceServiceV1WorkspacesInstallationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesAnalytics$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesAnalytics$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 PostApiWorkspaceServiceV1WorkspacesAnalytics$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 PostApiWorkspaceServiceV1WorkspacesAnalytics$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesAnalytics$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesAnalytics$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesAnalytics$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesAnalytics$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesAnalyticsToJSON(postApiWorkspaceServiceV1WorkspacesAnalytics: PostApiWorkspaceServiceV1WorkspacesAnalytics): string; export declare function postApiWorkspaceServiceV1WorkspacesAnalyticsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesReviews$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesReviews$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 PostApiWorkspaceServiceV1WorkspacesReviews$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 PostApiWorkspaceServiceV1WorkspacesReviews$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesReviews$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesReviews$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesReviews$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesReviews$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesReviewsToJSON(postApiWorkspaceServiceV1WorkspacesReviews: PostApiWorkspaceServiceV1WorkspacesReviews): string; export declare function postApiWorkspaceServiceV1WorkspacesReviewsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesInfo$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesInfo$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 PostApiWorkspaceServiceV1WorkspacesInfo$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 PostApiWorkspaceServiceV1WorkspacesInfo$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesInfo$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesInfo$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesInfo$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesInfo$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesInfoToJSON(postApiWorkspaceServiceV1WorkspacesInfo: PostApiWorkspaceServiceV1WorkspacesInfo): string; export declare function postApiWorkspaceServiceV1WorkspacesInfoFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesWebhooks$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesWebhooks$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 PostApiWorkspaceServiceV1WorkspacesWebhooks$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 PostApiWorkspaceServiceV1WorkspacesWebhooks$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWebhooks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWebhooks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWebhooks$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesWebhooks$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesWebhooksToJSON(postApiWorkspaceServiceV1WorkspacesWebhooks: PostApiWorkspaceServiceV1WorkspacesWebhooks): string; export declare function postApiWorkspaceServiceV1WorkspacesWebhooksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesPermissions$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesPermissions$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 PostApiWorkspaceServiceV1WorkspacesPermissions$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 PostApiWorkspaceServiceV1WorkspacesPermissions$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesPermissions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesPermissions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesPermissions$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesPermissions$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesPermissionsToJSON(postApiWorkspaceServiceV1WorkspacesPermissions: PostApiWorkspaceServiceV1WorkspacesPermissions): string; export declare function postApiWorkspaceServiceV1WorkspacesPermissionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesInstalledApps$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesInstalledApps$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?: PostApiWorkspaceServiceV1WorkspacesInfo$Outbound | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesInstalledApps$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 PostApiWorkspaceServiceV1WorkspacesInstalledApps$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesInstalledApps$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesInstalledApps$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesInstalledApps$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesInstalledApps$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesInstalledAppsToJSON(postApiWorkspaceServiceV1WorkspacesInstalledApps: PostApiWorkspaceServiceV1WorkspacesInstalledApps): string; export declare function postApiWorkspaceServiceV1WorkspacesInstalledAppsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesWorkspace$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesWorkspace$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 PostApiWorkspaceServiceV1WorkspacesWorkspace$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 PostApiWorkspaceServiceV1WorkspacesWorkspace$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspace$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspace$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesWorkspace$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesWorkspace$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesWorkspaceToJSON(postApiWorkspaceServiceV1WorkspacesWorkspace: PostApiWorkspaceServiceV1WorkspacesWorkspace): string; export declare function postApiWorkspaceServiceV1WorkspacesWorkspaceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesResponseBody$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1WorkspacesResponseBody$Outbound = { workspace?: PostApiWorkspaceServiceV1WorkspacesWorkspace$Outbound | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1WorkspacesResponseBody$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 PostApiWorkspaceServiceV1WorkspacesResponseBody$ { /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1WorkspacesResponseBody$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1WorkspacesResponseBody$Outbound; } export declare function postApiWorkspaceServiceV1WorkspacesResponseBodyToJSON(postApiWorkspaceServiceV1WorkspacesResponseBody: PostApiWorkspaceServiceV1WorkspacesResponseBody): string; export declare function postApiWorkspaceServiceV1WorkspacesResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postapiworkspaceservicev1workspaces.d.ts.map