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 declare const ComplianceLevel: { readonly ComplianceLevelUnspecified: "COMPLIANCE_LEVEL_UNSPECIFIED"; readonly ComplianceLevelNone: "COMPLIANCE_LEVEL_NONE"; readonly ComplianceLevelBasic: "COMPLIANCE_LEVEL_BASIC"; readonly ComplianceLevelAdvanced: "COMPLIANCE_LEVEL_ADVANCED"; readonly ComplianceLevelEnterprise: "COMPLIANCE_LEVEL_ENTERPRISE"; }; export type ComplianceLevel = ClosedEnum; export type PostApiWorkspaceServiceV1AccountsRequestBody = { auth0UserId: string; email: string; baseDirectory?: string | undefined; region?: string | undefined; orgId?: string | undefined; tenantId?: string | undefined; roles?: Array | undefined; permissions?: Array | undefined; mfaEnabled?: boolean | undefined; complianceLevel?: ComplianceLevel | undefined; preferences?: { [k: string]: string; } | undefined; }; export declare const PostApiWorkspaceServiceV1AccountsComplianceLevel: { readonly ComplianceLevelUnspecified: "COMPLIANCE_LEVEL_UNSPECIFIED"; readonly ComplianceLevelNone: "COMPLIANCE_LEVEL_NONE"; readonly ComplianceLevelBasic: "COMPLIANCE_LEVEL_BASIC"; readonly ComplianceLevelAdvanced: "COMPLIANCE_LEVEL_ADVANCED"; readonly ComplianceLevelEnterprise: "COMPLIANCE_LEVEL_ENTERPRISE"; }; export type PostApiWorkspaceServiceV1AccountsComplianceLevel = ClosedEnum; export type PostApiWorkspaceServiceV1AccountsEmbeddings = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1AccountsAccountsResponse200Versions = { 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 PostApiWorkspaceServiceV1AccountsComments = { 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 PostApiWorkspaceServiceV1AccountsAccountsSharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1AccountsSnapshots = { id?: string | undefined; fileId?: string | undefined; snapshotHash?: string | undefined; content?: string | undefined; authorId?: string | undefined; reason?: string | undefined; createdAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1AccountsFiles = { 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?: PostApiWorkspaceServiceV1AccountsEmbeddings | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; export type PostApiWorkspaceServiceV1AccountsFolders = { 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 PostApiWorkspaceServiceV1AccountsTemplateType: { 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 PostApiWorkspaceServiceV1AccountsTemplateType = ClosedEnum; export type PostApiWorkspaceServiceV1AccountsVersions = { 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 PostApiWorkspaceServiceV1AccountsVariables = { 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 PostApiWorkspaceServiceV1AccountsStatus: { 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 PostApiWorkspaceServiceV1AccountsStatus = ClosedEnum; export declare const PostApiWorkspaceServiceV1AccountsAccountsStatus: { 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 PostApiWorkspaceServiceV1AccountsAccountsStatus = ClosedEnum; export type PostApiWorkspaceServiceV1AccountsSignatureBlocks = { 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 PostApiWorkspaceServiceV1AccountsWorkflow = { 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 PostApiWorkspaceServiceV1AccountsSignatureRequests = { id?: string | undefined; status?: PostApiWorkspaceServiceV1AccountsAccountsStatus | 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?: PostApiWorkspaceServiceV1AccountsWorkflow | undefined; }; export type PostApiWorkspaceServiceV1AccountsAiAssistance = { 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 PostApiWorkspaceServiceV1AccountsRounds = { 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 PostApiWorkspaceServiceV1AccountsNegotiation = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: Date | undefined; lastUpdated?: Date | undefined; }; export type PostApiWorkspaceServiceV1AccountsMerges = { 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 PostApiWorkspaceServiceV1AccountsPolicy = { 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 PostApiWorkspaceServiceV1AccountsMergeRequests = { 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 PostApiWorkspaceServiceV1AccountsBranches = { 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?: PostApiWorkspaceServiceV1AccountsPolicy | undefined; mergeRequests?: Array | undefined; }; export type PostApiWorkspaceServiceV1AccountsChanges = { 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 PostApiWorkspaceServiceV1AccountsSummaries = { 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 PostApiWorkspaceServiceV1AccountsAccountsResponseVersions = { 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 PostApiWorkspaceServiceV1AccountsInstances = { id?: string | undefined; templateId?: string | undefined; status?: PostApiWorkspaceServiceV1AccountsStatus | 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?: PostApiWorkspaceServiceV1AccountsNegotiation | undefined; versions?: Array | undefined; }; export type PostApiWorkspaceServiceV1AccountsExplanations = { 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 PostApiWorkspaceServiceV1AccountsRiskAssessments = { 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 PostApiWorkspaceServiceV1AccountsComplianceChecks = { id?: string | undefined; intelligenceId?: string | undefined; complianceStandard?: string | undefined; checkResult?: string | undefined; violations?: Array | undefined; remediationSteps?: string | undefined; checkDate?: Date | undefined; }; export type PostApiWorkspaceServiceV1AccountsIntelligence = { 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 PostApiWorkspaceServiceV1AccountsTemplates = { 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?: PostApiWorkspaceServiceV1AccountsTemplateType | 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 PostApiWorkspaceServiceV1AccountsSharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1AccountsActivities = { id?: string | undefined; activityType?: string | undefined; userId?: string | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1AccountsCompliance = { id?: string | undefined; complianceType?: string | undefined; status?: string | undefined; certificationId?: string | undefined; validUntil?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export declare const PostApiWorkspaceServiceV1AccountsCategory: { 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 PostApiWorkspaceServiceV1AccountsCategory = ClosedEnum; export declare const PostApiWorkspaceServiceV1AccountsPricingModel: { 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 PostApiWorkspaceServiceV1AccountsPricingModel = ClosedEnum; export type PostApiWorkspaceServiceV1AccountsAccountsVersions = { 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 PostApiWorkspaceServiceV1AccountsInstallations = { 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 PostApiWorkspaceServiceV1AccountsAnalytics = { id?: string | undefined; appId?: string | undefined; metricName?: string | undefined; metricValue?: number | undefined; dimensions?: { [k: string]: string; } | undefined; recordedAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1AccountsReviews = { id?: string | undefined; appId?: string | undefined; reviewerId?: string | undefined; rating?: number | undefined; reviewText?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1AccountsInfo = { 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 PostApiWorkspaceServiceV1AccountsWebhooks = { 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 PostApiWorkspaceServiceV1AccountsPermissions = { 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 PostApiWorkspaceServiceV1AccountsInstalledApps = { id?: string | undefined; name?: string | undefined; description?: string | undefined; developerId?: string | undefined; category?: PostApiWorkspaceServiceV1AccountsCategory | undefined; supportedContractTypes?: Array | undefined; features?: Array | undefined; pricingModel?: PostApiWorkspaceServiceV1AccountsPricingModel | 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?: PostApiWorkspaceServiceV1AccountsInfo | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; export type PostApiWorkspaceServiceV1AccountsWorkspaces = { 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 PostApiWorkspaceServiceV1AccountsDataProfiles = { id?: string | undefined; name?: string | undefined; profileType?: string | undefined; dataFields?: { [k: string]: string; } | undefined; isDefault?: boolean | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type PostApiWorkspaceServiceV1AccountsAccount = { id?: string | undefined; auth0UserId?: string | undefined; email?: string | undefined; baseDirectory?: string | undefined; bucketName?: string | undefined; region?: string | undefined; orgId?: string | undefined; tenantId?: string | undefined; roles?: Array | undefined; permissions?: Array | undefined; mfaEnabled?: boolean | undefined; complianceLevel?: PostApiWorkspaceServiceV1AccountsComplianceLevel | undefined; preferences?: { [k: string]: string; } | undefined; apiKeys?: Array | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; deletedAt?: Date | undefined; workspaces?: Array | undefined; dataProfiles?: Array | undefined; }; /** * Creates a new user account with initial workspace */ export type PostApiWorkspaceServiceV1AccountsResponseBody = { account?: PostApiWorkspaceServiceV1AccountsAccount | undefined; initialWorkspaceName?: string | undefined; }; /** @internal */ export declare const ComplianceLevel$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ComplianceLevel$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 ComplianceLevel$ { /** @deprecated use `ComplianceLevel$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly ComplianceLevelUnspecified: "COMPLIANCE_LEVEL_UNSPECIFIED"; readonly ComplianceLevelNone: "COMPLIANCE_LEVEL_NONE"; readonly ComplianceLevelBasic: "COMPLIANCE_LEVEL_BASIC"; readonly ComplianceLevelAdvanced: "COMPLIANCE_LEVEL_ADVANCED"; readonly ComplianceLevelEnterprise: "COMPLIANCE_LEVEL_ENTERPRISE"; }>; /** @deprecated use `ComplianceLevel$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly ComplianceLevelUnspecified: "COMPLIANCE_LEVEL_UNSPECIFIED"; readonly ComplianceLevelNone: "COMPLIANCE_LEVEL_NONE"; readonly ComplianceLevelBasic: "COMPLIANCE_LEVEL_BASIC"; readonly ComplianceLevelAdvanced: "COMPLIANCE_LEVEL_ADVANCED"; readonly ComplianceLevelEnterprise: "COMPLIANCE_LEVEL_ENTERPRISE"; }>; } /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsRequestBody$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsRequestBody$Outbound = { auth0UserId: string; email: string; baseDirectory?: string | undefined; region?: string | undefined; orgId?: string | undefined; tenantId?: string | undefined; roles?: Array | undefined; permissions?: Array | undefined; mfaEnabled?: boolean | undefined; complianceLevel: string; preferences?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsRequestBody$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 PostApiWorkspaceServiceV1AccountsRequestBody$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsRequestBody$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsRequestBody$Outbound; } export declare function postApiWorkspaceServiceV1AccountsRequestBodyToJSON(postApiWorkspaceServiceV1AccountsRequestBody: PostApiWorkspaceServiceV1AccountsRequestBody): string; export declare function postApiWorkspaceServiceV1AccountsRequestBodyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsComplianceLevel$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsComplianceLevel$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 PostApiWorkspaceServiceV1AccountsComplianceLevel$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsComplianceLevel$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly ComplianceLevelUnspecified: "COMPLIANCE_LEVEL_UNSPECIFIED"; readonly ComplianceLevelNone: "COMPLIANCE_LEVEL_NONE"; readonly ComplianceLevelBasic: "COMPLIANCE_LEVEL_BASIC"; readonly ComplianceLevelAdvanced: "COMPLIANCE_LEVEL_ADVANCED"; readonly ComplianceLevelEnterprise: "COMPLIANCE_LEVEL_ENTERPRISE"; }>; /** @deprecated use `PostApiWorkspaceServiceV1AccountsComplianceLevel$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly ComplianceLevelUnspecified: "COMPLIANCE_LEVEL_UNSPECIFIED"; readonly ComplianceLevelNone: "COMPLIANCE_LEVEL_NONE"; readonly ComplianceLevelBasic: "COMPLIANCE_LEVEL_BASIC"; readonly ComplianceLevelAdvanced: "COMPLIANCE_LEVEL_ADVANCED"; readonly ComplianceLevelEnterprise: "COMPLIANCE_LEVEL_ENTERPRISE"; }>; } /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsEmbeddings$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsEmbeddings$Outbound = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsEmbeddings$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 PostApiWorkspaceServiceV1AccountsEmbeddings$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsEmbeddings$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsEmbeddings$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsEmbeddings$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsEmbeddings$Outbound; } export declare function postApiWorkspaceServiceV1AccountsEmbeddingsToJSON(postApiWorkspaceServiceV1AccountsEmbeddings: PostApiWorkspaceServiceV1AccountsEmbeddings): string; export declare function postApiWorkspaceServiceV1AccountsEmbeddingsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsAccountsResponse200Versions$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsAccountsResponse200Versions$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 PostApiWorkspaceServiceV1AccountsAccountsResponse200Versions$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 PostApiWorkspaceServiceV1AccountsAccountsResponse200Versions$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsResponse200Versions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsResponse200Versions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsResponse200Versions$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsAccountsResponse200Versions$Outbound; } export declare function postApiWorkspaceServiceV1AccountsAccountsResponse200VersionsToJSON(postApiWorkspaceServiceV1AccountsAccountsResponse200Versions: PostApiWorkspaceServiceV1AccountsAccountsResponse200Versions): string; export declare function postApiWorkspaceServiceV1AccountsAccountsResponse200VersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsComments$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsComments$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 PostApiWorkspaceServiceV1AccountsComments$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 PostApiWorkspaceServiceV1AccountsComments$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsComments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsComments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsComments$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsComments$Outbound; } export declare function postApiWorkspaceServiceV1AccountsCommentsToJSON(postApiWorkspaceServiceV1AccountsComments: PostApiWorkspaceServiceV1AccountsComments): string; export declare function postApiWorkspaceServiceV1AccountsCommentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsAccountsSharing$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsAccountsSharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsAccountsSharing$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 PostApiWorkspaceServiceV1AccountsAccountsSharing$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsSharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsSharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsSharing$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsAccountsSharing$Outbound; } export declare function postApiWorkspaceServiceV1AccountsAccountsSharingToJSON(postApiWorkspaceServiceV1AccountsAccountsSharing: PostApiWorkspaceServiceV1AccountsAccountsSharing): string; export declare function postApiWorkspaceServiceV1AccountsAccountsSharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsSnapshots$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsSnapshots$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 PostApiWorkspaceServiceV1AccountsSnapshots$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 PostApiWorkspaceServiceV1AccountsSnapshots$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsSnapshots$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsSnapshots$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsSnapshots$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsSnapshots$Outbound; } export declare function postApiWorkspaceServiceV1AccountsSnapshotsToJSON(postApiWorkspaceServiceV1AccountsSnapshots: PostApiWorkspaceServiceV1AccountsSnapshots): string; export declare function postApiWorkspaceServiceV1AccountsSnapshotsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsFiles$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsFiles$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?: PostApiWorkspaceServiceV1AccountsEmbeddings$Outbound | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsFiles$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 PostApiWorkspaceServiceV1AccountsFiles$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsFiles$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsFiles$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsFiles$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsFiles$Outbound; } export declare function postApiWorkspaceServiceV1AccountsFilesToJSON(postApiWorkspaceServiceV1AccountsFiles: PostApiWorkspaceServiceV1AccountsFiles): string; export declare function postApiWorkspaceServiceV1AccountsFilesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsFolders$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsFolders$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 PostApiWorkspaceServiceV1AccountsFolders$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 PostApiWorkspaceServiceV1AccountsFolders$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsFolders$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsFolders$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsFolders$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsFolders$Outbound; } export declare function postApiWorkspaceServiceV1AccountsFoldersToJSON(postApiWorkspaceServiceV1AccountsFolders: PostApiWorkspaceServiceV1AccountsFolders): string; export declare function postApiWorkspaceServiceV1AccountsFoldersFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsTemplateType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsTemplateType$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 PostApiWorkspaceServiceV1AccountsTemplateType$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsTemplateType$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 `PostApiWorkspaceServiceV1AccountsTemplateType$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 PostApiWorkspaceServiceV1AccountsVersions$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsVersions$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 PostApiWorkspaceServiceV1AccountsVersions$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 PostApiWorkspaceServiceV1AccountsVersions$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsVersions$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsVersions$Outbound; } export declare function postApiWorkspaceServiceV1AccountsVersionsToJSON(postApiWorkspaceServiceV1AccountsVersions: PostApiWorkspaceServiceV1AccountsVersions): string; export declare function postApiWorkspaceServiceV1AccountsVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsVariables$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsVariables$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 PostApiWorkspaceServiceV1AccountsVariables$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 PostApiWorkspaceServiceV1AccountsVariables$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsVariables$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsVariables$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsVariables$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsVariables$Outbound; } export declare function postApiWorkspaceServiceV1AccountsVariablesToJSON(postApiWorkspaceServiceV1AccountsVariables: PostApiWorkspaceServiceV1AccountsVariables): string; export declare function postApiWorkspaceServiceV1AccountsVariablesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsStatus$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 PostApiWorkspaceServiceV1AccountsStatus$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsStatus$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 `PostApiWorkspaceServiceV1AccountsStatus$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 PostApiWorkspaceServiceV1AccountsAccountsStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsAccountsStatus$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 PostApiWorkspaceServiceV1AccountsAccountsStatus$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsStatus$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 `PostApiWorkspaceServiceV1AccountsAccountsStatus$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 PostApiWorkspaceServiceV1AccountsSignatureBlocks$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsSignatureBlocks$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 PostApiWorkspaceServiceV1AccountsSignatureBlocks$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 PostApiWorkspaceServiceV1AccountsSignatureBlocks$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsSignatureBlocks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsSignatureBlocks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsSignatureBlocks$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsSignatureBlocks$Outbound; } export declare function postApiWorkspaceServiceV1AccountsSignatureBlocksToJSON(postApiWorkspaceServiceV1AccountsSignatureBlocks: PostApiWorkspaceServiceV1AccountsSignatureBlocks): string; export declare function postApiWorkspaceServiceV1AccountsSignatureBlocksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsWorkflow$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsWorkflow$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 PostApiWorkspaceServiceV1AccountsWorkflow$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 PostApiWorkspaceServiceV1AccountsWorkflow$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsWorkflow$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsWorkflow$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsWorkflow$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsWorkflow$Outbound; } export declare function postApiWorkspaceServiceV1AccountsWorkflowToJSON(postApiWorkspaceServiceV1AccountsWorkflow: PostApiWorkspaceServiceV1AccountsWorkflow): string; export declare function postApiWorkspaceServiceV1AccountsWorkflowFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsSignatureRequests$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsSignatureRequests$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?: PostApiWorkspaceServiceV1AccountsWorkflow$Outbound | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsSignatureRequests$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 PostApiWorkspaceServiceV1AccountsSignatureRequests$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsSignatureRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsSignatureRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsSignatureRequests$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsSignatureRequests$Outbound; } export declare function postApiWorkspaceServiceV1AccountsSignatureRequestsToJSON(postApiWorkspaceServiceV1AccountsSignatureRequests: PostApiWorkspaceServiceV1AccountsSignatureRequests): string; export declare function postApiWorkspaceServiceV1AccountsSignatureRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsAiAssistance$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsAiAssistance$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 PostApiWorkspaceServiceV1AccountsAiAssistance$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 PostApiWorkspaceServiceV1AccountsAiAssistance$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsAiAssistance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAiAssistance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAiAssistance$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsAiAssistance$Outbound; } export declare function postApiWorkspaceServiceV1AccountsAiAssistanceToJSON(postApiWorkspaceServiceV1AccountsAiAssistance: PostApiWorkspaceServiceV1AccountsAiAssistance): string; export declare function postApiWorkspaceServiceV1AccountsAiAssistanceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsRounds$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsRounds$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 PostApiWorkspaceServiceV1AccountsRounds$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 PostApiWorkspaceServiceV1AccountsRounds$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsRounds$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsRounds$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsRounds$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsRounds$Outbound; } export declare function postApiWorkspaceServiceV1AccountsRoundsToJSON(postApiWorkspaceServiceV1AccountsRounds: PostApiWorkspaceServiceV1AccountsRounds): string; export declare function postApiWorkspaceServiceV1AccountsRoundsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsNegotiation$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsNegotiation$Outbound = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: string | undefined; lastUpdated?: string | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsNegotiation$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 PostApiWorkspaceServiceV1AccountsNegotiation$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsNegotiation$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsNegotiation$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsNegotiation$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsNegotiation$Outbound; } export declare function postApiWorkspaceServiceV1AccountsNegotiationToJSON(postApiWorkspaceServiceV1AccountsNegotiation: PostApiWorkspaceServiceV1AccountsNegotiation): string; export declare function postApiWorkspaceServiceV1AccountsNegotiationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsMerges$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsMerges$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 PostApiWorkspaceServiceV1AccountsMerges$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 PostApiWorkspaceServiceV1AccountsMerges$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsMerges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsMerges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsMerges$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsMerges$Outbound; } export declare function postApiWorkspaceServiceV1AccountsMergesToJSON(postApiWorkspaceServiceV1AccountsMerges: PostApiWorkspaceServiceV1AccountsMerges): string; export declare function postApiWorkspaceServiceV1AccountsMergesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsPolicy$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsPolicy$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 PostApiWorkspaceServiceV1AccountsPolicy$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 PostApiWorkspaceServiceV1AccountsPolicy$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsPolicy$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsPolicy$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsPolicy$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsPolicy$Outbound; } export declare function postApiWorkspaceServiceV1AccountsPolicyToJSON(postApiWorkspaceServiceV1AccountsPolicy: PostApiWorkspaceServiceV1AccountsPolicy): string; export declare function postApiWorkspaceServiceV1AccountsPolicyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsMergeRequests$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsMergeRequests$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 PostApiWorkspaceServiceV1AccountsMergeRequests$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 PostApiWorkspaceServiceV1AccountsMergeRequests$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsMergeRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsMergeRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsMergeRequests$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsMergeRequests$Outbound; } export declare function postApiWorkspaceServiceV1AccountsMergeRequestsToJSON(postApiWorkspaceServiceV1AccountsMergeRequests: PostApiWorkspaceServiceV1AccountsMergeRequests): string; export declare function postApiWorkspaceServiceV1AccountsMergeRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsBranches$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsBranches$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?: PostApiWorkspaceServiceV1AccountsPolicy$Outbound | undefined; mergeRequests?: Array | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsBranches$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 PostApiWorkspaceServiceV1AccountsBranches$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsBranches$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsBranches$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsBranches$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsBranches$Outbound; } export declare function postApiWorkspaceServiceV1AccountsBranchesToJSON(postApiWorkspaceServiceV1AccountsBranches: PostApiWorkspaceServiceV1AccountsBranches): string; export declare function postApiWorkspaceServiceV1AccountsBranchesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsChanges$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsChanges$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 PostApiWorkspaceServiceV1AccountsChanges$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 PostApiWorkspaceServiceV1AccountsChanges$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsChanges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsChanges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsChanges$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsChanges$Outbound; } export declare function postApiWorkspaceServiceV1AccountsChangesToJSON(postApiWorkspaceServiceV1AccountsChanges: PostApiWorkspaceServiceV1AccountsChanges): string; export declare function postApiWorkspaceServiceV1AccountsChangesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsSummaries$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsSummaries$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 PostApiWorkspaceServiceV1AccountsSummaries$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 PostApiWorkspaceServiceV1AccountsSummaries$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsSummaries$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsSummaries$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsSummaries$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsSummaries$Outbound; } export declare function postApiWorkspaceServiceV1AccountsSummariesToJSON(postApiWorkspaceServiceV1AccountsSummaries: PostApiWorkspaceServiceV1AccountsSummaries): string; export declare function postApiWorkspaceServiceV1AccountsSummariesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsAccountsResponseVersions$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsAccountsResponseVersions$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 PostApiWorkspaceServiceV1AccountsAccountsResponseVersions$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 PostApiWorkspaceServiceV1AccountsAccountsResponseVersions$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsResponseVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsResponseVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsResponseVersions$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsAccountsResponseVersions$Outbound; } export declare function postApiWorkspaceServiceV1AccountsAccountsResponseVersionsToJSON(postApiWorkspaceServiceV1AccountsAccountsResponseVersions: PostApiWorkspaceServiceV1AccountsAccountsResponseVersions): string; export declare function postApiWorkspaceServiceV1AccountsAccountsResponseVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsInstances$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsInstances$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?: PostApiWorkspaceServiceV1AccountsNegotiation$Outbound | undefined; versions?: Array | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsInstances$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 PostApiWorkspaceServiceV1AccountsInstances$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsInstances$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsInstances$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsInstances$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsInstances$Outbound; } export declare function postApiWorkspaceServiceV1AccountsInstancesToJSON(postApiWorkspaceServiceV1AccountsInstances: PostApiWorkspaceServiceV1AccountsInstances): string; export declare function postApiWorkspaceServiceV1AccountsInstancesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsExplanations$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsExplanations$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 PostApiWorkspaceServiceV1AccountsExplanations$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 PostApiWorkspaceServiceV1AccountsExplanations$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsExplanations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsExplanations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsExplanations$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsExplanations$Outbound; } export declare function postApiWorkspaceServiceV1AccountsExplanationsToJSON(postApiWorkspaceServiceV1AccountsExplanations: PostApiWorkspaceServiceV1AccountsExplanations): string; export declare function postApiWorkspaceServiceV1AccountsExplanationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsRiskAssessments$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsRiskAssessments$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 PostApiWorkspaceServiceV1AccountsRiskAssessments$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 PostApiWorkspaceServiceV1AccountsRiskAssessments$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsRiskAssessments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsRiskAssessments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsRiskAssessments$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsRiskAssessments$Outbound; } export declare function postApiWorkspaceServiceV1AccountsRiskAssessmentsToJSON(postApiWorkspaceServiceV1AccountsRiskAssessments: PostApiWorkspaceServiceV1AccountsRiskAssessments): string; export declare function postApiWorkspaceServiceV1AccountsRiskAssessmentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsComplianceChecks$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsComplianceChecks$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 PostApiWorkspaceServiceV1AccountsComplianceChecks$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 PostApiWorkspaceServiceV1AccountsComplianceChecks$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsComplianceChecks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsComplianceChecks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsComplianceChecks$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsComplianceChecks$Outbound; } export declare function postApiWorkspaceServiceV1AccountsComplianceChecksToJSON(postApiWorkspaceServiceV1AccountsComplianceChecks: PostApiWorkspaceServiceV1AccountsComplianceChecks): string; export declare function postApiWorkspaceServiceV1AccountsComplianceChecksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsIntelligence$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsIntelligence$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 PostApiWorkspaceServiceV1AccountsIntelligence$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 PostApiWorkspaceServiceV1AccountsIntelligence$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsIntelligence$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsIntelligence$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsIntelligence$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsIntelligence$Outbound; } export declare function postApiWorkspaceServiceV1AccountsIntelligenceToJSON(postApiWorkspaceServiceV1AccountsIntelligence: PostApiWorkspaceServiceV1AccountsIntelligence): string; export declare function postApiWorkspaceServiceV1AccountsIntelligenceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsTemplates$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsTemplates$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 PostApiWorkspaceServiceV1AccountsTemplates$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 PostApiWorkspaceServiceV1AccountsTemplates$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsTemplates$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsTemplates$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsTemplates$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsTemplates$Outbound; } export declare function postApiWorkspaceServiceV1AccountsTemplatesToJSON(postApiWorkspaceServiceV1AccountsTemplates: PostApiWorkspaceServiceV1AccountsTemplates): string; export declare function postApiWorkspaceServiceV1AccountsTemplatesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsSharing$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsSharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsSharing$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 PostApiWorkspaceServiceV1AccountsSharing$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsSharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsSharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsSharing$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsSharing$Outbound; } export declare function postApiWorkspaceServiceV1AccountsSharingToJSON(postApiWorkspaceServiceV1AccountsSharing: PostApiWorkspaceServiceV1AccountsSharing): string; export declare function postApiWorkspaceServiceV1AccountsSharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsActivities$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsActivities$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 PostApiWorkspaceServiceV1AccountsActivities$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 PostApiWorkspaceServiceV1AccountsActivities$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsActivities$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsActivities$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsActivities$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsActivities$Outbound; } export declare function postApiWorkspaceServiceV1AccountsActivitiesToJSON(postApiWorkspaceServiceV1AccountsActivities: PostApiWorkspaceServiceV1AccountsActivities): string; export declare function postApiWorkspaceServiceV1AccountsActivitiesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsCompliance$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsCompliance$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 PostApiWorkspaceServiceV1AccountsCompliance$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 PostApiWorkspaceServiceV1AccountsCompliance$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsCompliance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsCompliance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsCompliance$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsCompliance$Outbound; } export declare function postApiWorkspaceServiceV1AccountsComplianceToJSON(postApiWorkspaceServiceV1AccountsCompliance: PostApiWorkspaceServiceV1AccountsCompliance): string; export declare function postApiWorkspaceServiceV1AccountsComplianceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsCategory$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsCategory$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 PostApiWorkspaceServiceV1AccountsCategory$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsCategory$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 `PostApiWorkspaceServiceV1AccountsCategory$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 PostApiWorkspaceServiceV1AccountsPricingModel$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsPricingModel$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 PostApiWorkspaceServiceV1AccountsPricingModel$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsPricingModel$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 `PostApiWorkspaceServiceV1AccountsPricingModel$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 PostApiWorkspaceServiceV1AccountsAccountsVersions$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsAccountsVersions$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 PostApiWorkspaceServiceV1AccountsAccountsVersions$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 PostApiWorkspaceServiceV1AccountsAccountsVersions$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccountsVersions$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsAccountsVersions$Outbound; } export declare function postApiWorkspaceServiceV1AccountsAccountsVersionsToJSON(postApiWorkspaceServiceV1AccountsAccountsVersions: PostApiWorkspaceServiceV1AccountsAccountsVersions): string; export declare function postApiWorkspaceServiceV1AccountsAccountsVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsInstallations$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsInstallations$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 PostApiWorkspaceServiceV1AccountsInstallations$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 PostApiWorkspaceServiceV1AccountsInstallations$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsInstallations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsInstallations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsInstallations$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsInstallations$Outbound; } export declare function postApiWorkspaceServiceV1AccountsInstallationsToJSON(postApiWorkspaceServiceV1AccountsInstallations: PostApiWorkspaceServiceV1AccountsInstallations): string; export declare function postApiWorkspaceServiceV1AccountsInstallationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsAnalytics$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsAnalytics$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 PostApiWorkspaceServiceV1AccountsAnalytics$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 PostApiWorkspaceServiceV1AccountsAnalytics$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsAnalytics$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAnalytics$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAnalytics$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsAnalytics$Outbound; } export declare function postApiWorkspaceServiceV1AccountsAnalyticsToJSON(postApiWorkspaceServiceV1AccountsAnalytics: PostApiWorkspaceServiceV1AccountsAnalytics): string; export declare function postApiWorkspaceServiceV1AccountsAnalyticsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsReviews$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsReviews$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 PostApiWorkspaceServiceV1AccountsReviews$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 PostApiWorkspaceServiceV1AccountsReviews$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsReviews$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsReviews$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsReviews$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsReviews$Outbound; } export declare function postApiWorkspaceServiceV1AccountsReviewsToJSON(postApiWorkspaceServiceV1AccountsReviews: PostApiWorkspaceServiceV1AccountsReviews): string; export declare function postApiWorkspaceServiceV1AccountsReviewsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsInfo$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsInfo$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 PostApiWorkspaceServiceV1AccountsInfo$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 PostApiWorkspaceServiceV1AccountsInfo$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsInfo$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsInfo$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsInfo$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsInfo$Outbound; } export declare function postApiWorkspaceServiceV1AccountsInfoToJSON(postApiWorkspaceServiceV1AccountsInfo: PostApiWorkspaceServiceV1AccountsInfo): string; export declare function postApiWorkspaceServiceV1AccountsInfoFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsWebhooks$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsWebhooks$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 PostApiWorkspaceServiceV1AccountsWebhooks$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 PostApiWorkspaceServiceV1AccountsWebhooks$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsWebhooks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsWebhooks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsWebhooks$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsWebhooks$Outbound; } export declare function postApiWorkspaceServiceV1AccountsWebhooksToJSON(postApiWorkspaceServiceV1AccountsWebhooks: PostApiWorkspaceServiceV1AccountsWebhooks): string; export declare function postApiWorkspaceServiceV1AccountsWebhooksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsPermissions$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsPermissions$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 PostApiWorkspaceServiceV1AccountsPermissions$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 PostApiWorkspaceServiceV1AccountsPermissions$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsPermissions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsPermissions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsPermissions$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsPermissions$Outbound; } export declare function postApiWorkspaceServiceV1AccountsPermissionsToJSON(postApiWorkspaceServiceV1AccountsPermissions: PostApiWorkspaceServiceV1AccountsPermissions): string; export declare function postApiWorkspaceServiceV1AccountsPermissionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsInstalledApps$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsInstalledApps$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?: PostApiWorkspaceServiceV1AccountsInfo$Outbound | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsInstalledApps$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 PostApiWorkspaceServiceV1AccountsInstalledApps$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsInstalledApps$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsInstalledApps$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsInstalledApps$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsInstalledApps$Outbound; } export declare function postApiWorkspaceServiceV1AccountsInstalledAppsToJSON(postApiWorkspaceServiceV1AccountsInstalledApps: PostApiWorkspaceServiceV1AccountsInstalledApps): string; export declare function postApiWorkspaceServiceV1AccountsInstalledAppsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsWorkspaces$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsWorkspaces$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 PostApiWorkspaceServiceV1AccountsWorkspaces$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 PostApiWorkspaceServiceV1AccountsWorkspaces$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsWorkspaces$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsWorkspaces$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsWorkspaces$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsWorkspaces$Outbound; } export declare function postApiWorkspaceServiceV1AccountsWorkspacesToJSON(postApiWorkspaceServiceV1AccountsWorkspaces: PostApiWorkspaceServiceV1AccountsWorkspaces): string; export declare function postApiWorkspaceServiceV1AccountsWorkspacesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsDataProfiles$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsDataProfiles$Outbound = { id?: string | undefined; name?: string | undefined; profileType?: string | undefined; dataFields?: { [k: string]: string; } | undefined; isDefault?: boolean | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsDataProfiles$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 PostApiWorkspaceServiceV1AccountsDataProfiles$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsDataProfiles$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsDataProfiles$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsDataProfiles$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsDataProfiles$Outbound; } export declare function postApiWorkspaceServiceV1AccountsDataProfilesToJSON(postApiWorkspaceServiceV1AccountsDataProfiles: PostApiWorkspaceServiceV1AccountsDataProfiles): string; export declare function postApiWorkspaceServiceV1AccountsDataProfilesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsAccount$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsAccount$Outbound = { id?: string | undefined; auth0UserId?: string | undefined; email?: string | undefined; baseDirectory?: string | undefined; bucketName?: string | undefined; region?: string | undefined; orgId?: string | undefined; tenantId?: string | undefined; roles?: Array | undefined; permissions?: Array | undefined; mfaEnabled?: boolean | undefined; complianceLevel: string; preferences?: { [k: string]: string; } | undefined; apiKeys?: Array | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; deletedAt?: string | undefined; workspaces?: Array | undefined; dataProfiles?: Array | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsAccount$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 PostApiWorkspaceServiceV1AccountsAccount$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccount$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccount$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsAccount$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsAccount$Outbound; } export declare function postApiWorkspaceServiceV1AccountsAccountToJSON(postApiWorkspaceServiceV1AccountsAccount: PostApiWorkspaceServiceV1AccountsAccount): string; export declare function postApiWorkspaceServiceV1AccountsAccountFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsResponseBody$inboundSchema: z.ZodType; /** @internal */ export type PostApiWorkspaceServiceV1AccountsResponseBody$Outbound = { account?: PostApiWorkspaceServiceV1AccountsAccount$Outbound | undefined; initialWorkspaceName?: string | undefined; }; /** @internal */ export declare const PostApiWorkspaceServiceV1AccountsResponseBody$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 PostApiWorkspaceServiceV1AccountsResponseBody$ { /** @deprecated use `PostApiWorkspaceServiceV1AccountsResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PostApiWorkspaceServiceV1AccountsResponseBody$Outbound` instead. */ type Outbound = PostApiWorkspaceServiceV1AccountsResponseBody$Outbound; } export declare function postApiWorkspaceServiceV1AccountsResponseBodyToJSON(postApiWorkspaceServiceV1AccountsResponseBody: PostApiWorkspaceServiceV1AccountsResponseBody): string; export declare function postApiWorkspaceServiceV1AccountsResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postapiworkspaceservicev1accounts.d.ts.map