import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetApiWorkspaceServiceV1WorkspacesIdRequest = { id: string; }; export type GetApiWorkspaceServiceV1WorkspacesIdEmbeddings = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200Versions = { 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 GetApiWorkspaceServiceV1WorkspacesIdComments = { 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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesSharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdSnapshots = { id?: string | undefined; fileId?: string | undefined; snapshotHash?: string | undefined; content?: string | undefined; authorId?: string | undefined; reason?: string | undefined; createdAt?: Date | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdFiles = { 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?: GetApiWorkspaceServiceV1WorkspacesIdEmbeddings | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdFolders = { 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 GetApiWorkspaceServiceV1WorkspacesIdTemplateType: { 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 GetApiWorkspaceServiceV1WorkspacesIdTemplateType = ClosedEnum; export type GetApiWorkspaceServiceV1WorkspacesIdVersions = { 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 GetApiWorkspaceServiceV1WorkspacesIdVariables = { 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 GetApiWorkspaceServiceV1WorkspacesIdStatus: { 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 GetApiWorkspaceServiceV1WorkspacesIdStatus = ClosedEnum; export declare const GetApiWorkspaceServiceV1WorkspacesIdWorkspacesStatus: { 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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesStatus = ClosedEnum; export type GetApiWorkspaceServiceV1WorkspacesIdSignatureBlocks = { 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 GetApiWorkspaceServiceV1WorkspacesIdWorkflow = { 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 GetApiWorkspaceServiceV1WorkspacesIdSignatureRequests = { id?: string | undefined; status?: GetApiWorkspaceServiceV1WorkspacesIdWorkspacesStatus | 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?: GetApiWorkspaceServiceV1WorkspacesIdWorkflow | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdAiAssistance = { 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 GetApiWorkspaceServiceV1WorkspacesIdRounds = { 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 GetApiWorkspaceServiceV1WorkspacesIdNegotiation = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: Date | undefined; lastUpdated?: Date | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdMerges = { 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 GetApiWorkspaceServiceV1WorkspacesIdPolicy = { 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 GetApiWorkspaceServiceV1WorkspacesIdMergeRequests = { 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 GetApiWorkspaceServiceV1WorkspacesIdBranches = { 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?: GetApiWorkspaceServiceV1WorkspacesIdPolicy | undefined; mergeRequests?: Array | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdChanges = { 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 GetApiWorkspaceServiceV1WorkspacesIdSummaries = { 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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersions = { 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 GetApiWorkspaceServiceV1WorkspacesIdInstances = { id?: string | undefined; templateId?: string | undefined; status?: GetApiWorkspaceServiceV1WorkspacesIdStatus | 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?: GetApiWorkspaceServiceV1WorkspacesIdNegotiation | undefined; versions?: Array | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdExplanations = { 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 GetApiWorkspaceServiceV1WorkspacesIdRiskAssessments = { 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 GetApiWorkspaceServiceV1WorkspacesIdComplianceChecks = { id?: string | undefined; intelligenceId?: string | undefined; complianceStandard?: string | undefined; checkResult?: string | undefined; violations?: Array | undefined; remediationSteps?: string | undefined; checkDate?: Date | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdIntelligence = { 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 GetApiWorkspaceServiceV1WorkspacesIdTemplates = { 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?: GetApiWorkspaceServiceV1WorkspacesIdTemplateType | 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 GetApiWorkspaceServiceV1WorkspacesIdSharing = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdActivities = { id?: string | undefined; activityType?: string | undefined; userId?: string | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; createdAt?: Date | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdCompliance = { id?: string | undefined; complianceType?: string | undefined; status?: string | undefined; certificationId?: string | undefined; validUntil?: Date | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export declare const GetApiWorkspaceServiceV1WorkspacesIdCategory: { 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 GetApiWorkspaceServiceV1WorkspacesIdCategory = ClosedEnum; export declare const GetApiWorkspaceServiceV1WorkspacesIdPricingModel: { 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 GetApiWorkspaceServiceV1WorkspacesIdPricingModel = ClosedEnum; export type GetApiWorkspaceServiceV1WorkspacesIdWorkspacesVersions = { 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 GetApiWorkspaceServiceV1WorkspacesIdInstallations = { 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 GetApiWorkspaceServiceV1WorkspacesIdAnalytics = { id?: string | undefined; appId?: string | undefined; metricName?: string | undefined; metricValue?: number | undefined; dimensions?: { [k: string]: string; } | undefined; recordedAt?: Date | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdReviews = { id?: string | undefined; appId?: string | undefined; reviewerId?: string | undefined; rating?: number | undefined; reviewText?: string | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdInfo = { 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 GetApiWorkspaceServiceV1WorkspacesIdWebhooks = { 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 GetApiWorkspaceServiceV1WorkspacesIdPermissions = { 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 GetApiWorkspaceServiceV1WorkspacesIdInstalledApps = { id?: string | undefined; name?: string | undefined; description?: string | undefined; developerId?: string | undefined; category?: GetApiWorkspaceServiceV1WorkspacesIdCategory | undefined; supportedContractTypes?: Array | undefined; features?: Array | undefined; pricingModel?: GetApiWorkspaceServiceV1WorkspacesIdPricingModel | 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?: GetApiWorkspaceServiceV1WorkspacesIdInfo | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdWorkspace = { 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 GetApiWorkspaceServiceV1WorkspacesIdData = { workspace?: GetApiWorkspaceServiceV1WorkspacesIdWorkspace | undefined; }; export type GetApiWorkspaceServiceV1WorkspacesIdResponseBody = { data: GetApiWorkspaceServiceV1WorkspacesIdData; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdRequest$Outbound = { id: string; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdRequest$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 GetApiWorkspaceServiceV1WorkspacesIdRequest$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdRequest$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdRequest$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdRequestToJSON(getApiWorkspaceServiceV1WorkspacesIdRequest: GetApiWorkspaceServiceV1WorkspacesIdRequest): string; export declare function getApiWorkspaceServiceV1WorkspacesIdRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdEmbeddings$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdEmbeddings$Outbound = { id?: string | undefined; embeddings?: Array | undefined; modelVersion?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdEmbeddings$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 GetApiWorkspaceServiceV1WorkspacesIdEmbeddings$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdEmbeddings$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdEmbeddings$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdEmbeddings$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdEmbeddings$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdEmbeddingsToJSON(getApiWorkspaceServiceV1WorkspacesIdEmbeddings: GetApiWorkspaceServiceV1WorkspacesIdEmbeddings): string; export declare function getApiWorkspaceServiceV1WorkspacesIdEmbeddingsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200Versions$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200Versions$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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200Versions$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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200Versions$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200Versions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200Versions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200Versions$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200Versions$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200VersionsToJSON(getApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200Versions: GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200Versions): string; export declare function getApiWorkspaceServiceV1WorkspacesIdWorkspacesResponse200VersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdComments$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdComments$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 GetApiWorkspaceServiceV1WorkspacesIdComments$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 GetApiWorkspaceServiceV1WorkspacesIdComments$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdComments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdComments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdComments$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdComments$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdCommentsToJSON(getApiWorkspaceServiceV1WorkspacesIdComments: GetApiWorkspaceServiceV1WorkspacesIdComments): string; export declare function getApiWorkspaceServiceV1WorkspacesIdCommentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdWorkspacesSharing$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdWorkspacesSharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdWorkspacesSharing$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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesSharing$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesSharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesSharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesSharing$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdWorkspacesSharing$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdWorkspacesSharingToJSON(getApiWorkspaceServiceV1WorkspacesIdWorkspacesSharing: GetApiWorkspaceServiceV1WorkspacesIdWorkspacesSharing): string; export declare function getApiWorkspaceServiceV1WorkspacesIdWorkspacesSharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdSnapshots$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdSnapshots$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 GetApiWorkspaceServiceV1WorkspacesIdSnapshots$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 GetApiWorkspaceServiceV1WorkspacesIdSnapshots$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSnapshots$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSnapshots$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSnapshots$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdSnapshots$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdSnapshotsToJSON(getApiWorkspaceServiceV1WorkspacesIdSnapshots: GetApiWorkspaceServiceV1WorkspacesIdSnapshots): string; export declare function getApiWorkspaceServiceV1WorkspacesIdSnapshotsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdFiles$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdFiles$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?: GetApiWorkspaceServiceV1WorkspacesIdEmbeddings$Outbound | undefined; versions?: Array | undefined; comments?: Array | undefined; sharing?: Array | undefined; snapshots?: Array | undefined; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdFiles$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 GetApiWorkspaceServiceV1WorkspacesIdFiles$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdFiles$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdFiles$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdFiles$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdFiles$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdFilesToJSON(getApiWorkspaceServiceV1WorkspacesIdFiles: GetApiWorkspaceServiceV1WorkspacesIdFiles): string; export declare function getApiWorkspaceServiceV1WorkspacesIdFilesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdFolders$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdFolders$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 GetApiWorkspaceServiceV1WorkspacesIdFolders$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 GetApiWorkspaceServiceV1WorkspacesIdFolders$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdFolders$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdFolders$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdFolders$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdFolders$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdFoldersToJSON(getApiWorkspaceServiceV1WorkspacesIdFolders: GetApiWorkspaceServiceV1WorkspacesIdFolders): string; export declare function getApiWorkspaceServiceV1WorkspacesIdFoldersFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdTemplateType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdTemplateType$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 GetApiWorkspaceServiceV1WorkspacesIdTemplateType$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdTemplateType$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 `GetApiWorkspaceServiceV1WorkspacesIdTemplateType$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 GetApiWorkspaceServiceV1WorkspacesIdVersions$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdVersions$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 GetApiWorkspaceServiceV1WorkspacesIdVersions$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 GetApiWorkspaceServiceV1WorkspacesIdVersions$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdVersions$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdVersions$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdVersionsToJSON(getApiWorkspaceServiceV1WorkspacesIdVersions: GetApiWorkspaceServiceV1WorkspacesIdVersions): string; export declare function getApiWorkspaceServiceV1WorkspacesIdVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdVariables$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdVariables$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 GetApiWorkspaceServiceV1WorkspacesIdVariables$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 GetApiWorkspaceServiceV1WorkspacesIdVariables$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdVariables$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdVariables$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdVariables$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdVariables$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdVariablesToJSON(getApiWorkspaceServiceV1WorkspacesIdVariables: GetApiWorkspaceServiceV1WorkspacesIdVariables): string; export declare function getApiWorkspaceServiceV1WorkspacesIdVariablesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdStatus$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 GetApiWorkspaceServiceV1WorkspacesIdStatus$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdStatus$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 `GetApiWorkspaceServiceV1WorkspacesIdStatus$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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdWorkspacesStatus$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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesStatus$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesStatus$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 `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesStatus$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 GetApiWorkspaceServiceV1WorkspacesIdSignatureBlocks$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdSignatureBlocks$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 GetApiWorkspaceServiceV1WorkspacesIdSignatureBlocks$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 GetApiWorkspaceServiceV1WorkspacesIdSignatureBlocks$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSignatureBlocks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSignatureBlocks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSignatureBlocks$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdSignatureBlocks$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdSignatureBlocksToJSON(getApiWorkspaceServiceV1WorkspacesIdSignatureBlocks: GetApiWorkspaceServiceV1WorkspacesIdSignatureBlocks): string; export declare function getApiWorkspaceServiceV1WorkspacesIdSignatureBlocksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdWorkflow$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdWorkflow$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 GetApiWorkspaceServiceV1WorkspacesIdWorkflow$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 GetApiWorkspaceServiceV1WorkspacesIdWorkflow$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkflow$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkflow$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkflow$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdWorkflow$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdWorkflowToJSON(getApiWorkspaceServiceV1WorkspacesIdWorkflow: GetApiWorkspaceServiceV1WorkspacesIdWorkflow): string; export declare function getApiWorkspaceServiceV1WorkspacesIdWorkflowFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdSignatureRequests$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdSignatureRequests$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?: GetApiWorkspaceServiceV1WorkspacesIdWorkflow$Outbound | undefined; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdSignatureRequests$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 GetApiWorkspaceServiceV1WorkspacesIdSignatureRequests$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSignatureRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSignatureRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSignatureRequests$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdSignatureRequests$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdSignatureRequestsToJSON(getApiWorkspaceServiceV1WorkspacesIdSignatureRequests: GetApiWorkspaceServiceV1WorkspacesIdSignatureRequests): string; export declare function getApiWorkspaceServiceV1WorkspacesIdSignatureRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdAiAssistance$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdAiAssistance$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 GetApiWorkspaceServiceV1WorkspacesIdAiAssistance$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 GetApiWorkspaceServiceV1WorkspacesIdAiAssistance$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdAiAssistance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdAiAssistance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdAiAssistance$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdAiAssistance$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdAiAssistanceToJSON(getApiWorkspaceServiceV1WorkspacesIdAiAssistance: GetApiWorkspaceServiceV1WorkspacesIdAiAssistance): string; export declare function getApiWorkspaceServiceV1WorkspacesIdAiAssistanceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdRounds$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdRounds$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 GetApiWorkspaceServiceV1WorkspacesIdRounds$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 GetApiWorkspaceServiceV1WorkspacesIdRounds$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdRounds$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdRounds$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdRounds$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdRounds$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdRoundsToJSON(getApiWorkspaceServiceV1WorkspacesIdRounds: GetApiWorkspaceServiceV1WorkspacesIdRounds): string; export declare function getApiWorkspaceServiceV1WorkspacesIdRoundsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdNegotiation$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdNegotiation$Outbound = { id?: string | undefined; documentId?: string | undefined; rounds?: Array | undefined; currentStatus?: string | undefined; startedAt?: string | undefined; lastUpdated?: string | undefined; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdNegotiation$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 GetApiWorkspaceServiceV1WorkspacesIdNegotiation$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdNegotiation$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdNegotiation$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdNegotiation$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdNegotiation$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdNegotiationToJSON(getApiWorkspaceServiceV1WorkspacesIdNegotiation: GetApiWorkspaceServiceV1WorkspacesIdNegotiation): string; export declare function getApiWorkspaceServiceV1WorkspacesIdNegotiationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdMerges$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdMerges$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 GetApiWorkspaceServiceV1WorkspacesIdMerges$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 GetApiWorkspaceServiceV1WorkspacesIdMerges$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdMerges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdMerges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdMerges$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdMerges$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdMergesToJSON(getApiWorkspaceServiceV1WorkspacesIdMerges: GetApiWorkspaceServiceV1WorkspacesIdMerges): string; export declare function getApiWorkspaceServiceV1WorkspacesIdMergesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdPolicy$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdPolicy$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 GetApiWorkspaceServiceV1WorkspacesIdPolicy$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 GetApiWorkspaceServiceV1WorkspacesIdPolicy$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdPolicy$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdPolicy$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdPolicy$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdPolicy$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdPolicyToJSON(getApiWorkspaceServiceV1WorkspacesIdPolicy: GetApiWorkspaceServiceV1WorkspacesIdPolicy): string; export declare function getApiWorkspaceServiceV1WorkspacesIdPolicyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdMergeRequests$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdMergeRequests$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 GetApiWorkspaceServiceV1WorkspacesIdMergeRequests$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 GetApiWorkspaceServiceV1WorkspacesIdMergeRequests$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdMergeRequests$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdMergeRequests$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdMergeRequests$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdMergeRequests$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdMergeRequestsToJSON(getApiWorkspaceServiceV1WorkspacesIdMergeRequests: GetApiWorkspaceServiceV1WorkspacesIdMergeRequests): string; export declare function getApiWorkspaceServiceV1WorkspacesIdMergeRequestsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdBranches$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdBranches$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?: GetApiWorkspaceServiceV1WorkspacesIdPolicy$Outbound | undefined; mergeRequests?: Array | undefined; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdBranches$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 GetApiWorkspaceServiceV1WorkspacesIdBranches$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdBranches$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdBranches$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdBranches$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdBranches$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdBranchesToJSON(getApiWorkspaceServiceV1WorkspacesIdBranches: GetApiWorkspaceServiceV1WorkspacesIdBranches): string; export declare function getApiWorkspaceServiceV1WorkspacesIdBranchesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdChanges$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdChanges$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 GetApiWorkspaceServiceV1WorkspacesIdChanges$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 GetApiWorkspaceServiceV1WorkspacesIdChanges$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdChanges$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdChanges$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdChanges$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdChanges$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdChangesToJSON(getApiWorkspaceServiceV1WorkspacesIdChanges: GetApiWorkspaceServiceV1WorkspacesIdChanges): string; export declare function getApiWorkspaceServiceV1WorkspacesIdChangesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdSummaries$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdSummaries$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 GetApiWorkspaceServiceV1WorkspacesIdSummaries$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 GetApiWorkspaceServiceV1WorkspacesIdSummaries$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSummaries$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSummaries$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSummaries$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdSummaries$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdSummariesToJSON(getApiWorkspaceServiceV1WorkspacesIdSummaries: GetApiWorkspaceServiceV1WorkspacesIdSummaries): string; export declare function getApiWorkspaceServiceV1WorkspacesIdSummariesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersions$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersions$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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersions$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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersions$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersions$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersions$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersionsToJSON(getApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersions: GetApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersions): string; export declare function getApiWorkspaceServiceV1WorkspacesIdWorkspacesResponseVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdInstances$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdInstances$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?: GetApiWorkspaceServiceV1WorkspacesIdNegotiation$Outbound | undefined; versions?: Array | undefined; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdInstances$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 GetApiWorkspaceServiceV1WorkspacesIdInstances$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdInstances$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdInstances$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdInstances$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdInstances$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdInstancesToJSON(getApiWorkspaceServiceV1WorkspacesIdInstances: GetApiWorkspaceServiceV1WorkspacesIdInstances): string; export declare function getApiWorkspaceServiceV1WorkspacesIdInstancesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdExplanations$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdExplanations$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 GetApiWorkspaceServiceV1WorkspacesIdExplanations$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 GetApiWorkspaceServiceV1WorkspacesIdExplanations$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdExplanations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdExplanations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdExplanations$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdExplanations$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdExplanationsToJSON(getApiWorkspaceServiceV1WorkspacesIdExplanations: GetApiWorkspaceServiceV1WorkspacesIdExplanations): string; export declare function getApiWorkspaceServiceV1WorkspacesIdExplanationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdRiskAssessments$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdRiskAssessments$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 GetApiWorkspaceServiceV1WorkspacesIdRiskAssessments$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 GetApiWorkspaceServiceV1WorkspacesIdRiskAssessments$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdRiskAssessments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdRiskAssessments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdRiskAssessments$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdRiskAssessments$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdRiskAssessmentsToJSON(getApiWorkspaceServiceV1WorkspacesIdRiskAssessments: GetApiWorkspaceServiceV1WorkspacesIdRiskAssessments): string; export declare function getApiWorkspaceServiceV1WorkspacesIdRiskAssessmentsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdComplianceChecks$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdComplianceChecks$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 GetApiWorkspaceServiceV1WorkspacesIdComplianceChecks$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 GetApiWorkspaceServiceV1WorkspacesIdComplianceChecks$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdComplianceChecks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdComplianceChecks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdComplianceChecks$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdComplianceChecks$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdComplianceChecksToJSON(getApiWorkspaceServiceV1WorkspacesIdComplianceChecks: GetApiWorkspaceServiceV1WorkspacesIdComplianceChecks): string; export declare function getApiWorkspaceServiceV1WorkspacesIdComplianceChecksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdIntelligence$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdIntelligence$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 GetApiWorkspaceServiceV1WorkspacesIdIntelligence$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 GetApiWorkspaceServiceV1WorkspacesIdIntelligence$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdIntelligence$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdIntelligence$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdIntelligence$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdIntelligence$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdIntelligenceToJSON(getApiWorkspaceServiceV1WorkspacesIdIntelligence: GetApiWorkspaceServiceV1WorkspacesIdIntelligence): string; export declare function getApiWorkspaceServiceV1WorkspacesIdIntelligenceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdTemplates$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdTemplates$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 GetApiWorkspaceServiceV1WorkspacesIdTemplates$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 GetApiWorkspaceServiceV1WorkspacesIdTemplates$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdTemplates$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdTemplates$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdTemplates$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdTemplates$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdTemplatesToJSON(getApiWorkspaceServiceV1WorkspacesIdTemplates: GetApiWorkspaceServiceV1WorkspacesIdTemplates): string; export declare function getApiWorkspaceServiceV1WorkspacesIdTemplatesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdSharing$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdSharing$Outbound = { id?: string | undefined; sharedWithEmail?: string | undefined; permissionLevel?: string | undefined; expiresAt?: string | undefined; createdAt?: string | undefined; updatedAt?: string | undefined; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdSharing$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 GetApiWorkspaceServiceV1WorkspacesIdSharing$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSharing$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSharing$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdSharing$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdSharing$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdSharingToJSON(getApiWorkspaceServiceV1WorkspacesIdSharing: GetApiWorkspaceServiceV1WorkspacesIdSharing): string; export declare function getApiWorkspaceServiceV1WorkspacesIdSharingFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdActivities$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdActivities$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 GetApiWorkspaceServiceV1WorkspacesIdActivities$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 GetApiWorkspaceServiceV1WorkspacesIdActivities$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdActivities$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdActivities$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdActivities$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdActivities$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdActivitiesToJSON(getApiWorkspaceServiceV1WorkspacesIdActivities: GetApiWorkspaceServiceV1WorkspacesIdActivities): string; export declare function getApiWorkspaceServiceV1WorkspacesIdActivitiesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdCompliance$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdCompliance$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 GetApiWorkspaceServiceV1WorkspacesIdCompliance$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 GetApiWorkspaceServiceV1WorkspacesIdCompliance$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdCompliance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdCompliance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdCompliance$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdCompliance$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdComplianceToJSON(getApiWorkspaceServiceV1WorkspacesIdCompliance: GetApiWorkspaceServiceV1WorkspacesIdCompliance): string; export declare function getApiWorkspaceServiceV1WorkspacesIdComplianceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdCategory$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdCategory$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 GetApiWorkspaceServiceV1WorkspacesIdCategory$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdCategory$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 `GetApiWorkspaceServiceV1WorkspacesIdCategory$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 GetApiWorkspaceServiceV1WorkspacesIdPricingModel$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdPricingModel$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 GetApiWorkspaceServiceV1WorkspacesIdPricingModel$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdPricingModel$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 `GetApiWorkspaceServiceV1WorkspacesIdPricingModel$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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesVersions$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdWorkspacesVersions$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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesVersions$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 GetApiWorkspaceServiceV1WorkspacesIdWorkspacesVersions$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesVersions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesVersions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspacesVersions$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdWorkspacesVersions$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdWorkspacesVersionsToJSON(getApiWorkspaceServiceV1WorkspacesIdWorkspacesVersions: GetApiWorkspaceServiceV1WorkspacesIdWorkspacesVersions): string; export declare function getApiWorkspaceServiceV1WorkspacesIdWorkspacesVersionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdInstallations$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdInstallations$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 GetApiWorkspaceServiceV1WorkspacesIdInstallations$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 GetApiWorkspaceServiceV1WorkspacesIdInstallations$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdInstallations$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdInstallations$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdInstallations$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdInstallations$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdInstallationsToJSON(getApiWorkspaceServiceV1WorkspacesIdInstallations: GetApiWorkspaceServiceV1WorkspacesIdInstallations): string; export declare function getApiWorkspaceServiceV1WorkspacesIdInstallationsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdAnalytics$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdAnalytics$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 GetApiWorkspaceServiceV1WorkspacesIdAnalytics$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 GetApiWorkspaceServiceV1WorkspacesIdAnalytics$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdAnalytics$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdAnalytics$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdAnalytics$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdAnalytics$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdAnalyticsToJSON(getApiWorkspaceServiceV1WorkspacesIdAnalytics: GetApiWorkspaceServiceV1WorkspacesIdAnalytics): string; export declare function getApiWorkspaceServiceV1WorkspacesIdAnalyticsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdReviews$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdReviews$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 GetApiWorkspaceServiceV1WorkspacesIdReviews$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 GetApiWorkspaceServiceV1WorkspacesIdReviews$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdReviews$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdReviews$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdReviews$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdReviews$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdReviewsToJSON(getApiWorkspaceServiceV1WorkspacesIdReviews: GetApiWorkspaceServiceV1WorkspacesIdReviews): string; export declare function getApiWorkspaceServiceV1WorkspacesIdReviewsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdInfo$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdInfo$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 GetApiWorkspaceServiceV1WorkspacesIdInfo$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 GetApiWorkspaceServiceV1WorkspacesIdInfo$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdInfo$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdInfo$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdInfo$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdInfo$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdInfoToJSON(getApiWorkspaceServiceV1WorkspacesIdInfo: GetApiWorkspaceServiceV1WorkspacesIdInfo): string; export declare function getApiWorkspaceServiceV1WorkspacesIdInfoFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdWebhooks$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdWebhooks$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 GetApiWorkspaceServiceV1WorkspacesIdWebhooks$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 GetApiWorkspaceServiceV1WorkspacesIdWebhooks$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWebhooks$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWebhooks$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWebhooks$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdWebhooks$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdWebhooksToJSON(getApiWorkspaceServiceV1WorkspacesIdWebhooks: GetApiWorkspaceServiceV1WorkspacesIdWebhooks): string; export declare function getApiWorkspaceServiceV1WorkspacesIdWebhooksFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdPermissions$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdPermissions$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 GetApiWorkspaceServiceV1WorkspacesIdPermissions$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 GetApiWorkspaceServiceV1WorkspacesIdPermissions$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdPermissions$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdPermissions$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdPermissions$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdPermissions$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdPermissionsToJSON(getApiWorkspaceServiceV1WorkspacesIdPermissions: GetApiWorkspaceServiceV1WorkspacesIdPermissions): string; export declare function getApiWorkspaceServiceV1WorkspacesIdPermissionsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdInstalledApps$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdInstalledApps$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?: GetApiWorkspaceServiceV1WorkspacesIdInfo$Outbound | undefined; webhooks?: Array | undefined; permissions?: Array | undefined; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdInstalledApps$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 GetApiWorkspaceServiceV1WorkspacesIdInstalledApps$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdInstalledApps$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdInstalledApps$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdInstalledApps$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdInstalledApps$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdInstalledAppsToJSON(getApiWorkspaceServiceV1WorkspacesIdInstalledApps: GetApiWorkspaceServiceV1WorkspacesIdInstalledApps): string; export declare function getApiWorkspaceServiceV1WorkspacesIdInstalledAppsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdWorkspace$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdWorkspace$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 GetApiWorkspaceServiceV1WorkspacesIdWorkspace$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 GetApiWorkspaceServiceV1WorkspacesIdWorkspace$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspace$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspace$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdWorkspace$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdWorkspace$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdWorkspaceToJSON(getApiWorkspaceServiceV1WorkspacesIdWorkspace: GetApiWorkspaceServiceV1WorkspacesIdWorkspace): string; export declare function getApiWorkspaceServiceV1WorkspacesIdWorkspaceFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdData$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdData$Outbound = { workspace?: GetApiWorkspaceServiceV1WorkspacesIdWorkspace$Outbound | undefined; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdData$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 GetApiWorkspaceServiceV1WorkspacesIdData$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdData$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdData$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdData$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdData$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdDataToJSON(getApiWorkspaceServiceV1WorkspacesIdData: GetApiWorkspaceServiceV1WorkspacesIdData): string; export declare function getApiWorkspaceServiceV1WorkspacesIdDataFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdResponseBody$inboundSchema: z.ZodType; /** @internal */ export type GetApiWorkspaceServiceV1WorkspacesIdResponseBody$Outbound = { data: GetApiWorkspaceServiceV1WorkspacesIdData$Outbound; }; /** @internal */ export declare const GetApiWorkspaceServiceV1WorkspacesIdResponseBody$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 GetApiWorkspaceServiceV1WorkspacesIdResponseBody$ { /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiWorkspaceServiceV1WorkspacesIdResponseBody$Outbound` instead. */ type Outbound = GetApiWorkspaceServiceV1WorkspacesIdResponseBody$Outbound; } export declare function getApiWorkspaceServiceV1WorkspacesIdResponseBodyToJSON(getApiWorkspaceServiceV1WorkspacesIdResponseBody: GetApiWorkspaceServiceV1WorkspacesIdResponseBody): string; export declare function getApiWorkspaceServiceV1WorkspacesIdResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiworkspaceservicev1workspacesid.d.ts.map