@contractspec/lib.contracts 1.56.0 → 1.57.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (216) hide show
  1. package/dist/_virtual/{rolldown_runtime.js → _rolldown/runtime.js} +3 -3
  2. package/dist/app-config/events.d.ts +27 -27
  3. package/dist/app-config/lifecycle-contracts.d.ts +54 -54
  4. package/dist/app-config/runtime.js +3 -3
  5. package/dist/app-config/validation.js +3 -3
  6. package/dist/capabilities/capabilities.d.ts +0 -1
  7. package/dist/capabilities/capabilities.js +20 -20
  8. package/dist/capabilities/context.d.ts +0 -1
  9. package/dist/capabilities/context.js +1 -1
  10. package/dist/capabilities/guards.d.ts +0 -1
  11. package/dist/capabilities/index.d.ts +2 -1
  12. package/dist/capabilities/index.js +2 -1
  13. package/dist/capabilities/meeting-recorder.d.ts +10 -0
  14. package/dist/capabilities/meeting-recorder.js +82 -0
  15. package/dist/capabilities/validation.d.ts +0 -1
  16. package/dist/client/react/drivers/rn-reusables.d.ts +0 -1
  17. package/dist/client/react/drivers/shadcn.d.ts +0 -1
  18. package/dist/client/react/form-render.js +3 -3
  19. package/dist/contract-registry/schemas.d.ts +4 -4
  20. package/dist/data-views/registry.d.ts +0 -1
  21. package/dist/data-views/spec.d.ts +0 -1
  22. package/dist/docs/commands/docsGenerate.command.d.ts +19 -19
  23. package/dist/docs/commands/docsPublish.command.d.ts +13 -13
  24. package/dist/docs/contracts.d.ts +103 -103
  25. package/dist/docs/events/docsGenerated.event.d.ts +13 -13
  26. package/dist/docs/events/docsPublished.event.d.ts +15 -15
  27. package/dist/docs/forms/docsSearch.form.d.ts +4 -4
  28. package/dist/docs/index.d.ts +0 -1
  29. package/dist/docs/queries/contractReference.query.d.ts +47 -47
  30. package/dist/docs/queries/docsIndex.query.d.ts +57 -57
  31. package/dist/docs/tech/llm/llm-integration.docblock.d.ts +0 -1
  32. package/dist/docs/tech/mcp-endpoints.docblock.js +5 -0
  33. package/dist/events.d.ts +0 -1
  34. package/dist/examples/index.d.ts +0 -1
  35. package/dist/examples/registry.d.ts +0 -1
  36. package/dist/examples/schema.d.ts +14 -14
  37. package/dist/experiments/spec.d.ts +2 -5
  38. package/dist/features/index.d.ts +0 -1
  39. package/dist/features/types.d.ts +2 -6
  40. package/dist/forms/forms.d.ts +1 -2
  41. package/dist/forms/forms.js +1 -2
  42. package/dist/index.d.ts +42 -2
  43. package/dist/index.js +36 -1
  44. package/dist/install.d.ts +2 -5
  45. package/dist/integrations/docs/integrations.docblock.js +19 -1
  46. package/dist/integrations/index.d.ts +26 -1
  47. package/dist/integrations/index.js +20 -1
  48. package/dist/integrations/meeting-recorder/contracts/index.d.ts +10 -0
  49. package/dist/integrations/meeting-recorder/contracts/index.js +12 -0
  50. package/dist/integrations/meeting-recorder/contracts/meetings.d.ts +458 -0
  51. package/dist/integrations/meeting-recorder/contracts/meetings.js +149 -0
  52. package/dist/integrations/meeting-recorder/contracts/transcripts.d.ts +173 -0
  53. package/dist/integrations/meeting-recorder/contracts/transcripts.js +156 -0
  54. package/dist/integrations/meeting-recorder/contracts/webhooks.d.ts +92 -0
  55. package/dist/integrations/meeting-recorder/contracts/webhooks.js +82 -0
  56. package/dist/integrations/meeting-recorder/meeting-recorder.capability.d.ts +7 -0
  57. package/dist/integrations/meeting-recorder/meeting-recorder.capability.js +21 -0
  58. package/dist/integrations/meeting-recorder/meeting-recorder.feature.d.ts +11 -0
  59. package/dist/integrations/meeting-recorder/meeting-recorder.feature.js +67 -0
  60. package/dist/integrations/meeting-recorder/models.d.ts +407 -0
  61. package/dist/integrations/meeting-recorder/models.js +295 -0
  62. package/dist/integrations/meeting-recorder/telemetry.d.ts +16 -0
  63. package/dist/integrations/meeting-recorder/telemetry.js +42 -0
  64. package/dist/integrations/openbanking/contracts/accounts.d.ts +66 -66
  65. package/dist/integrations/openbanking/contracts/balances.d.ts +34 -34
  66. package/dist/integrations/openbanking/contracts/transactions.d.ts +48 -48
  67. package/dist/integrations/openbanking/models.d.ts +55 -55
  68. package/dist/integrations/operations.d.ts +102 -102
  69. package/dist/integrations/providers/analytics-reader.d.ts +107 -0
  70. package/dist/integrations/providers/analytics-reader.js +0 -0
  71. package/dist/integrations/providers/analytics-writer.d.ts +10 -0
  72. package/dist/integrations/providers/analytics-writer.js +0 -0
  73. package/dist/integrations/providers/analytics.d.ts +49 -0
  74. package/dist/integrations/providers/analytics.js +0 -0
  75. package/dist/integrations/providers/database.d.ts +15 -0
  76. package/dist/integrations/providers/database.js +0 -0
  77. package/dist/integrations/providers/fal.d.ts +8 -0
  78. package/dist/integrations/providers/fal.js +94 -0
  79. package/dist/integrations/providers/fathom.d.ts +8 -0
  80. package/dist/integrations/providers/fathom.js +114 -0
  81. package/dist/integrations/providers/fireflies.d.ts +8 -0
  82. package/dist/integrations/providers/fireflies.js +98 -0
  83. package/dist/integrations/providers/gradium.d.ts +8 -0
  84. package/dist/integrations/providers/gradium.js +92 -0
  85. package/dist/integrations/providers/granola.d.ts +8 -0
  86. package/dist/integrations/providers/granola.js +71 -0
  87. package/dist/integrations/providers/index.d.ts +19 -1
  88. package/dist/integrations/providers/index.js +13 -1
  89. package/dist/integrations/providers/jira.d.ts +8 -0
  90. package/dist/integrations/providers/jira.js +90 -0
  91. package/dist/integrations/providers/linear.d.ts +8 -0
  92. package/dist/integrations/providers/linear.js +85 -0
  93. package/dist/integrations/providers/meeting-recorder.d.ts +132 -0
  94. package/dist/integrations/providers/meeting-recorder.js +0 -0
  95. package/dist/integrations/providers/notion.d.ts +8 -0
  96. package/dist/integrations/providers/notion.js +91 -0
  97. package/dist/integrations/providers/posthog.d.ts +8 -0
  98. package/dist/integrations/providers/posthog.js +107 -0
  99. package/dist/integrations/providers/project-management.d.ts +35 -0
  100. package/dist/integrations/providers/project-management.js +0 -0
  101. package/dist/integrations/providers/registry.d.ts +0 -1
  102. package/dist/integrations/providers/registry.js +24 -0
  103. package/dist/integrations/providers/supabase-postgres.d.ts +8 -0
  104. package/dist/integrations/providers/supabase-postgres.js +73 -0
  105. package/dist/integrations/providers/supabase-vector.d.ts +8 -0
  106. package/dist/integrations/providers/supabase-vector.js +93 -0
  107. package/dist/integrations/providers/tldv.d.ts +8 -0
  108. package/dist/integrations/providers/tldv.js +98 -0
  109. package/dist/integrations/runtime.js +0 -1
  110. package/dist/integrations/spec.d.ts +1 -1
  111. package/dist/jobs/queue.d.ts +0 -1
  112. package/dist/knowledge/binding.d.ts +1 -3
  113. package/dist/knowledge/operations.d.ts +66 -66
  114. package/dist/llm/exporters.d.ts +0 -1
  115. package/dist/llm/exporters.js +0 -1
  116. package/dist/llm/prompts.d.ts +0 -1
  117. package/dist/llm/types.d.ts +0 -1
  118. package/dist/onboarding-base.d.ts +29 -29
  119. package/dist/openapi.d.ts +0 -1
  120. package/dist/operations/operation.d.ts +19 -43
  121. package/dist/operations/registry.d.ts +0 -1
  122. package/dist/operations/registry.js +2 -2
  123. package/dist/operations/report/getContractVerificationStatus.d.ts +10 -10
  124. package/dist/ownership.d.ts +41 -88
  125. package/dist/policy/guards.d.ts +0 -1
  126. package/dist/policy/guards.js +3 -3
  127. package/dist/policy/index.d.ts +0 -1
  128. package/dist/policy/spec.d.ts +0 -1
  129. package/dist/policy/validation.d.ts +0 -1
  130. package/dist/product-intent/contract-patch-intent.d.ts +103 -0
  131. package/dist/product-intent/contract-patch-intent.js +33 -0
  132. package/dist/product-intent/contract-spec-patch.d.ts +89 -0
  133. package/dist/product-intent/contract-spec-patch.js +27 -0
  134. package/dist/product-intent/evidence.d.ts +17 -0
  135. package/dist/product-intent/evidence.js +13 -0
  136. package/dist/product-intent/findings.d.ts +60 -0
  137. package/dist/product-intent/findings.js +17 -0
  138. package/dist/product-intent/impact-report.d.ts +60 -0
  139. package/dist/product-intent/impact-report.js +27 -0
  140. package/dist/product-intent/index.d.ts +16 -0
  141. package/dist/product-intent/index.js +17 -0
  142. package/dist/product-intent/insights.d.ts +65 -0
  143. package/dist/product-intent/insights.js +23 -0
  144. package/dist/product-intent/opportunity-brief.d.ts +195 -0
  145. package/dist/product-intent/opportunity-brief.js +42 -0
  146. package/dist/product-intent/problems.d.ts +62 -0
  147. package/dist/product-intent/problems.js +22 -0
  148. package/dist/product-intent/registry.d.ts +32 -0
  149. package/dist/product-intent/registry.js +49 -0
  150. package/dist/product-intent/runtime.d.ts +103 -0
  151. package/dist/product-intent/runtime.js +101 -0
  152. package/dist/product-intent/spec.d.ts +676 -0
  153. package/dist/product-intent/spec.js +53 -0
  154. package/dist/product-intent/task-pack.d.ts +101 -0
  155. package/dist/product-intent/task-pack.js +34 -0
  156. package/dist/product-intent/tickets.d.ts +70 -0
  157. package/dist/product-intent/tickets.js +24 -0
  158. package/dist/product-intent/types.d.ts +12 -0
  159. package/dist/product-intent/types.js +13 -0
  160. package/dist/product-intent/ui-wireframe.d.ts +103 -0
  161. package/dist/product-intent/ui-wireframe.js +33 -0
  162. package/dist/registry-utils.d.ts +0 -1
  163. package/dist/registry-utils.js +3 -3
  164. package/dist/resources.js +1 -1
  165. package/dist/schema-to-markdown.d.ts +0 -1
  166. package/dist/server/contracts-adapter-input.js +2 -2
  167. package/dist/server/graphql-pothos.d.ts +0 -1
  168. package/dist/server/mcp/createMcpServer.d.ts +0 -1
  169. package/dist/server/rest-express.d.ts +0 -1
  170. package/dist/server/rest-generic.js +3 -3
  171. package/dist/server/rest-next-app.d.ts +0 -1
  172. package/dist/tests/spec.d.ts +0 -2
  173. package/dist/themes.d.ts +0 -1
  174. package/dist/translations/registry.d.ts +0 -1
  175. package/dist/translations/spec.d.ts +0 -1
  176. package/dist/translations/validation.d.ts +0 -1
  177. package/dist/types.d.ts +5 -12
  178. package/dist/versioning/types.d.ts +0 -1
  179. package/dist/versioning/utils.d.ts +0 -1
  180. package/dist/workflow/adapters/memory-store.d.ts +0 -1
  181. package/dist/workflow/context.d.ts +0 -1
  182. package/dist/workflow/context.js +2 -2
  183. package/dist/workflow/runner.d.ts +1 -2
  184. package/dist/workspace-config/contractsrc-schema.d.ts +0 -1
  185. package/dist/workspace-config/contractsrc-types.d.ts +1 -3
  186. package/package.json +110 -32
  187. package/dist/integrations/providers/impls/elevenlabs-voice.d.ts +0 -20
  188. package/dist/integrations/providers/impls/elevenlabs-voice.js +0 -95
  189. package/dist/integrations/providers/impls/gcs-storage.d.ts +0 -24
  190. package/dist/integrations/providers/impls/gcs-storage.js +0 -88
  191. package/dist/integrations/providers/impls/gmail-inbound.d.ts +0 -26
  192. package/dist/integrations/providers/impls/gmail-inbound.js +0 -200
  193. package/dist/integrations/providers/impls/gmail-outbound.d.ts +0 -18
  194. package/dist/integrations/providers/impls/gmail-outbound.js +0 -105
  195. package/dist/integrations/providers/impls/google-calendar.d.ts +0 -23
  196. package/dist/integrations/providers/impls/google-calendar.js +0 -154
  197. package/dist/integrations/providers/impls/index.d.ts +0 -15
  198. package/dist/integrations/providers/impls/index.js +0 -16
  199. package/dist/integrations/providers/impls/mistral-embedding.d.ts +0 -23
  200. package/dist/integrations/providers/impls/mistral-embedding.js +0 -41
  201. package/dist/integrations/providers/impls/mistral-llm.d.ts +0 -31
  202. package/dist/integrations/providers/impls/mistral-llm.js +0 -247
  203. package/dist/integrations/providers/impls/postmark-email.d.ts +0 -19
  204. package/dist/integrations/providers/impls/postmark-email.js +0 -55
  205. package/dist/integrations/providers/impls/powens-client.d.ts +0 -124
  206. package/dist/integrations/providers/impls/powens-client.js +0 -171
  207. package/dist/integrations/providers/impls/powens-openbanking.d.ts +0 -27
  208. package/dist/integrations/providers/impls/powens-openbanking.js +0 -218
  209. package/dist/integrations/providers/impls/provider-factory.d.ts +0 -26
  210. package/dist/integrations/providers/impls/provider-factory.js +0 -146
  211. package/dist/integrations/providers/impls/qdrant-vector.d.ts +0 -24
  212. package/dist/integrations/providers/impls/qdrant-vector.js +0 -69
  213. package/dist/integrations/providers/impls/stripe-payments.d.ts +0 -28
  214. package/dist/integrations/providers/impls/stripe-payments.js +0 -202
  215. package/dist/integrations/providers/impls/twilio-sms.d.ts +0 -20
  216. package/dist/integrations/providers/impls/twilio-sms.js +0 -58
@@ -5,21 +5,39 @@ import { CapturePaymentInput, CreateCustomerInput, CreatePaymentIntentInput, Lis
5
5
  import { LLMChatOptions, LLMContentPart, LLMMessage, LLMProvider, LLMResponse, LLMRole, LLMStreamChunk, LLMTextPart, LLMTokenUsage, LLMToolCallPart, LLMToolDefinition, LLMToolResultPart, TokenCountResult } from "./providers/llm.js";
6
6
  import { EmbeddingDocument, EmbeddingProvider, EmbeddingResult, EmbeddingVector } from "./providers/embedding.js";
7
7
  import { VectorDeleteRequest, VectorDocument, VectorSearchQuery, VectorSearchResult, VectorStoreProvider, VectorUpsertRequest } from "./providers/vector-store.js";
8
+ import { DatabaseProvider, DatabaseQueryResult, DatabaseRow, DatabaseStatementParam } from "./providers/database.js";
9
+ import { AnalyticsAnnotation, AnalyticsCohort, AnalyticsEvent, AnalyticsFeatureFlag, AnalyticsInsight, AnalyticsInsightType, AnalyticsPerson, AnalyticsPropertyFilter, AnalyticsReader, DateRangeInput, GetAnnotationsInput, GetCohortsInput, GetEventsInput, GetFeatureFlagsInput, GetInsightResultInput, GetInsightsInput, GetPersonsInput, PaginatedResponse, PaginationInput } from "./providers/analytics-reader.js";
10
+ import { AnalyticsWriter } from "./providers/analytics-writer.js";
11
+ import { AnalyticsEventInput, AnalyticsIdentifyInput, AnalyticsMcpToolCall, AnalyticsProvider, AnalyticsQueryInput, AnalyticsQueryResult, AnalyticsRequest, AnalyticsRequestMethod, AnalyticsResponse } from "./providers/analytics.js";
8
12
  import { EmailAddress, EmailAttachment, EmailInboundProvider, EmailMessage, EmailMessagesSinceQuery, EmailOutboundMessage, EmailOutboundProvider, EmailOutboundResult, EmailThread, EmailThreadListQuery } from "./providers/email.js";
9
13
  import { CalendarAttendee, CalendarEvent, CalendarEventInput, CalendarEventUpdateInput, CalendarListEventsQuery, CalendarListEventsResult, CalendarProvider, CalendarReminder } from "./providers/calendar.js";
10
14
  import { SendSmsInput, SmsDeliveryStatus, SmsMessage, SmsProvider } from "./providers/sms.js";
11
15
  import { Voice, VoiceProvider, VoiceSynthesisInput, VoiceSynthesisResult } from "./providers/voice.js";
12
16
  import { DeleteObjectInput, GetObjectResult, ListObjectsQuery, ListObjectsResult, ObjectStorageProvider, PutObjectInput, SignedUrlOptions, StorageObjectBody, StorageObjectMetadata } from "./providers/storage.js";
17
+ import { ProjectManagementProvider, ProjectManagementWorkItem, ProjectManagementWorkItemInput, ProjectManagementWorkItemPriority, ProjectManagementWorkItemType } from "./providers/project-management.js";
18
+ import { MeetingParticipant, MeetingRecord, MeetingRecorderGetMeetingParams, MeetingRecorderGetTranscriptParams, MeetingRecorderListMeetingsParams, MeetingRecorderListMeetingsResult, MeetingRecorderProvider, MeetingRecorderWebhookEvent, MeetingRecorderWebhookRegistration, MeetingRecorderWebhookRequest, MeetingTranscriptRecord, MeetingTranscriptSegment } from "./providers/meeting-recorder.js";
13
19
  import { registerStripeIntegration, stripeIntegrationSpec } from "./providers/stripe.js";
14
20
  import { postmarkIntegrationSpec, registerPostmarkIntegration } from "./providers/postmark.js";
15
21
  import { qdrantIntegrationSpec, registerQdrantIntegration } from "./providers/qdrant.js";
22
+ import { registerSupabaseVectorIntegration, supabaseVectorIntegrationSpec } from "./providers/supabase-vector.js";
23
+ import { registerSupabasePostgresIntegration, supabasePostgresIntegrationSpec } from "./providers/supabase-postgres.js";
16
24
  import { mistralIntegrationSpec, registerMistralIntegration } from "./providers/mistral.js";
17
25
  import { elevenLabsIntegrationSpec, registerElevenLabsIntegration } from "./providers/elevenlabs.js";
26
+ import { gradiumIntegrationSpec, registerGradiumIntegration } from "./providers/gradium.js";
27
+ import { falIntegrationSpec, registerFalIntegration } from "./providers/fal.js";
18
28
  import { gmailIntegrationSpec, registerGmailIntegration } from "./providers/gmail.js";
19
29
  import { googleCalendarIntegrationSpec, registerGoogleCalendarIntegration } from "./providers/google-calendar.js";
20
30
  import { registerTwilioSmsIntegration, twilioSmsIntegrationSpec } from "./providers/twilio-sms.js";
21
31
  import { gcsStorageIntegrationSpec, registerGcsStorageIntegration } from "./providers/gcs-storage.js";
22
32
  import { powensIntegrationSpec, registerPowensIntegration } from "./providers/powens.js";
33
+ import { posthogIntegrationSpec, registerPosthogIntegration } from "./providers/posthog.js";
34
+ import { linearIntegrationSpec, registerLinearIntegration } from "./providers/linear.js";
35
+ import { jiraIntegrationSpec, registerJiraIntegration } from "./providers/jira.js";
36
+ import { notionIntegrationSpec, registerNotionIntegration } from "./providers/notion.js";
37
+ import { granolaIntegrationSpec, registerGranolaIntegration } from "./providers/granola.js";
38
+ import { registerTldvIntegration, tldvIntegrationSpec } from "./providers/tldv.js";
39
+ import { firefliesIntegrationSpec, registerFirefliesIntegration } from "./providers/fireflies.js";
40
+ import { fathomIntegrationSpec, registerFathomIntegration } from "./providers/fathom.js";
23
41
  import { OpenBankingAccountBalance, OpenBankingAccountDetails, OpenBankingAccountOwnership, OpenBankingAccountSummary, OpenBankingBalanceType, OpenBankingConnectionStatus, OpenBankingGetAccountDetailsParams, OpenBankingGetBalancesParams, OpenBankingGetConnectionStatusParams, OpenBankingListAccountsParams, OpenBankingListAccountsResult, OpenBankingListTransactionsParams, OpenBankingListTransactionsResult, OpenBankingProvider, OpenBankingTransaction } from "./providers/openbanking.js";
24
42
  import { createDefaultIntegrationSpecRegistry } from "./providers/registry.js";
25
43
  import "./providers/index.js";
@@ -31,4 +49,11 @@ import { OpenBankingFeature } from "./openbanking/openbanking.feature.js";
31
49
  import { registerOpenBankingContracts } from "./openbanking/contracts/index.js";
32
50
  import { OpenBankingGuardResult, assertPrimaryOpenBankingReady, ensurePrimaryOpenBankingIntegration } from "./openbanking/guards.js";
33
51
  import { OPENBANKING_PII_FIELDS, OPENBANKING_TELEMETRY_EVENTS, OpenBankingTelemetryEvent, redactOpenBankingTelemetryPayload } from "./openbanking/telemetry.js";
34
- export { AccountBalanceRecord, AppIntegrationBinding, BankAccountRecord, BankTransactionRecord, CalendarAttendee, CalendarEvent, CalendarEventInput, CalendarEventUpdateInput, CalendarListEventsQuery, CalendarListEventsResult, CalendarProvider, CalendarReminder, CapturePaymentInput, ConnectionStatus, CreateCustomerInput, CreatePaymentIntentInput, DeleteObjectInput, EmailAddress, EmailAttachment, EmailInboundProvider, EmailMessage, EmailMessagesSinceQuery, EmailOutboundMessage, EmailOutboundProvider, EmailOutboundResult, EmailThread, EmailThreadListQuery, EmbeddingDocument, EmbeddingProvider, EmbeddingResult, EmbeddingVector, GetObjectResult, IntegrationByokSetup, IntegrationCapabilityMapping, IntegrationCategory, IntegrationConfigSchema, IntegrationConnection, IntegrationConnectionHealth, IntegrationConnectionMeta, IntegrationHealthCheck, IntegrationMeta, IntegrationOwnershipMode, IntegrationSecretSchema, IntegrationSpec, IntegrationSpecRegistry, IntegrationUsageMetrics, LLMChatOptions, LLMContentPart, LLMMessage, LLMProvider, LLMResponse, LLMRole, LLMStreamChunk, LLMTextPart, LLMTokenUsage, LLMToolCallPart, LLMToolDefinition, LLMToolResultPart, ListInvoicesQuery, ListObjectsQuery, ListObjectsResult, ListTransactionsQuery, Money, OPENBANKING_PII_FIELDS, OPENBANKING_TELEMETRY_EVENTS, ObjectStorageProvider, OpenBankingAccountBalance, OpenBankingAccountDetails, OpenBankingAccountOwnership, OpenBankingAccountSummary, OpenBankingBalanceType, OpenBankingConnectionStatus, OpenBankingFeature, OpenBankingGetAccount, OpenBankingGetAccountDetailsParams, OpenBankingGetBalances, OpenBankingGetBalancesParams, OpenBankingGetConnectionStatusParams, OpenBankingGuardResult, OpenBankingListAccounts, OpenBankingListAccountsParams, OpenBankingListAccountsResult, OpenBankingListTransactions, OpenBankingListTransactionsParams, OpenBankingListTransactionsResult, OpenBankingProvider, OpenBankingRefreshBalances, OpenBankingSyncAccounts, OpenBankingSyncTransactions, OpenBankingTelemetryEvent, OpenBankingTransaction, PaymentCustomer, PaymentIntent, PaymentIntentStatus, PaymentInvoice, PaymentRefund, PaymentTransaction, PaymentsProvider, PutObjectInput, RefundPaymentInput, SendSmsInput, SignedUrlOptions, SmsDeliveryStatus, SmsMessage, SmsProvider, StorageObjectBody, StorageObjectMetadata, TokenCountResult, VectorDeleteRequest, VectorDocument, VectorSearchQuery, VectorSearchResult, VectorStoreProvider, VectorUpsertRequest, Voice, VoiceProvider, VoiceSynthesisInput, VoiceSynthesisResult, assertPrimaryOpenBankingReady, createDefaultIntegrationSpecRegistry, defineIntegration, elevenLabsIntegrationSpec, ensurePrimaryOpenBankingIntegration, gcsStorageIntegrationSpec, gmailIntegrationSpec, googleCalendarIntegrationSpec, makeIntegrationSpecKey, mistralIntegrationSpec, postmarkIntegrationSpec, powensIntegrationSpec, qdrantIntegrationSpec, redactOpenBankingTelemetryPayload, registerElevenLabsIntegration, registerGcsStorageIntegration, registerGmailIntegration, registerGoogleCalendarIntegration, registerMistralIntegration, registerOpenBankingContracts, registerPostmarkIntegration, registerPowensIntegration, registerQdrantIntegration, registerStripeIntegration, registerTwilioSmsIntegration, stripeIntegrationSpec, twilioSmsIntegrationSpec };
52
+ import { MeetingParticipantRecord, MeetingRecord as MeetingRecord$1, MeetingRecorderWebhookEventRecord, MeetingTranscriptRecord as MeetingTranscriptRecord$1, MeetingTranscriptSegmentRecord } from "./meeting-recorder/models.js";
53
+ import { MeetingRecorderGetMeeting, MeetingRecorderListMeetings } from "./meeting-recorder/contracts/meetings.js";
54
+ import { MeetingRecorderGetTranscript, MeetingRecorderSyncTranscript } from "./meeting-recorder/contracts/transcripts.js";
55
+ import { MeetingRecorderWebhookIngest } from "./meeting-recorder/contracts/webhooks.js";
56
+ import { MeetingRecorderFeature } from "./meeting-recorder/meeting-recorder.feature.js";
57
+ import { registerMeetingRecorderContracts } from "./meeting-recorder/contracts/index.js";
58
+ import { MEETING_RECORDER_PII_FIELDS, MEETING_RECORDER_TELEMETRY_EVENTS, MeetingRecorderTelemetryEvent, redactMeetingRecorderTelemetryPayload } from "./meeting-recorder/telemetry.js";
59
+ export { AccountBalanceRecord, AnalyticsAnnotation, AnalyticsCohort, AnalyticsEvent, AnalyticsEventInput, AnalyticsFeatureFlag, AnalyticsIdentifyInput, AnalyticsInsight, AnalyticsInsightType, AnalyticsMcpToolCall, AnalyticsPerson, AnalyticsPropertyFilter, AnalyticsProvider, AnalyticsQueryInput, AnalyticsQueryResult, AnalyticsReader, AnalyticsRequest, AnalyticsRequestMethod, AnalyticsResponse, AnalyticsWriter, AppIntegrationBinding, BankAccountRecord, BankTransactionRecord, CalendarAttendee, CalendarEvent, CalendarEventInput, CalendarEventUpdateInput, CalendarListEventsQuery, CalendarListEventsResult, CalendarProvider, CalendarReminder, CapturePaymentInput, ConnectionStatus, CreateCustomerInput, CreatePaymentIntentInput, DatabaseProvider, DatabaseQueryResult, DatabaseRow, DatabaseStatementParam, DateRangeInput, DeleteObjectInput, EmailAddress, EmailAttachment, EmailInboundProvider, EmailMessage, EmailMessagesSinceQuery, EmailOutboundMessage, EmailOutboundProvider, EmailOutboundResult, EmailThread, EmailThreadListQuery, EmbeddingDocument, EmbeddingProvider, EmbeddingResult, EmbeddingVector, GetAnnotationsInput, GetCohortsInput, GetEventsInput, GetFeatureFlagsInput, GetInsightResultInput, GetInsightsInput, GetObjectResult, GetPersonsInput, IntegrationByokSetup, IntegrationCapabilityMapping, IntegrationCategory, IntegrationConfigSchema, IntegrationConnection, IntegrationConnectionHealth, IntegrationConnectionMeta, IntegrationHealthCheck, IntegrationMeta, IntegrationOwnershipMode, IntegrationSecretSchema, IntegrationSpec, IntegrationSpecRegistry, IntegrationUsageMetrics, LLMChatOptions, LLMContentPart, LLMMessage, LLMProvider, LLMResponse, LLMRole, LLMStreamChunk, LLMTextPart, LLMTokenUsage, LLMToolCallPart, LLMToolDefinition, LLMToolResultPart, ListInvoicesQuery, ListObjectsQuery, ListObjectsResult, ListTransactionsQuery, MEETING_RECORDER_PII_FIELDS, MEETING_RECORDER_TELEMETRY_EVENTS, MeetingParticipant, MeetingParticipantRecord, MeetingRecord, MeetingRecord$1 as MeetingRecordModel, MeetingRecorderFeature, MeetingRecorderGetMeeting, MeetingRecorderGetMeetingParams, MeetingRecorderGetTranscript, MeetingRecorderGetTranscriptParams, MeetingRecorderListMeetings, MeetingRecorderListMeetingsParams, MeetingRecorderListMeetingsResult, MeetingRecorderProvider, MeetingRecorderSyncTranscript, MeetingRecorderTelemetryEvent, MeetingRecorderWebhookEvent, MeetingRecorderWebhookEventRecord, MeetingRecorderWebhookIngest, MeetingRecorderWebhookRegistration, MeetingRecorderWebhookRequest, MeetingTranscriptRecord, MeetingTranscriptRecord$1 as MeetingTranscriptRecordModel, MeetingTranscriptSegment, MeetingTranscriptSegmentRecord, Money, OPENBANKING_PII_FIELDS, OPENBANKING_TELEMETRY_EVENTS, ObjectStorageProvider, OpenBankingAccountBalance, OpenBankingAccountDetails, OpenBankingAccountOwnership, OpenBankingAccountSummary, OpenBankingBalanceType, OpenBankingConnectionStatus, OpenBankingFeature, OpenBankingGetAccount, OpenBankingGetAccountDetailsParams, OpenBankingGetBalances, OpenBankingGetBalancesParams, OpenBankingGetConnectionStatusParams, OpenBankingGuardResult, OpenBankingListAccounts, OpenBankingListAccountsParams, OpenBankingListAccountsResult, OpenBankingListTransactions, OpenBankingListTransactionsParams, OpenBankingListTransactionsResult, OpenBankingProvider, OpenBankingRefreshBalances, OpenBankingSyncAccounts, OpenBankingSyncTransactions, OpenBankingTelemetryEvent, OpenBankingTransaction, PaginatedResponse, PaginationInput, PaymentCustomer, PaymentIntent, PaymentIntentStatus, PaymentInvoice, PaymentRefund, PaymentTransaction, PaymentsProvider, ProjectManagementProvider, ProjectManagementWorkItem, ProjectManagementWorkItemInput, ProjectManagementWorkItemPriority, ProjectManagementWorkItemType, PutObjectInput, RefundPaymentInput, SendSmsInput, SignedUrlOptions, SmsDeliveryStatus, SmsMessage, SmsProvider, StorageObjectBody, StorageObjectMetadata, TokenCountResult, VectorDeleteRequest, VectorDocument, VectorSearchQuery, VectorSearchResult, VectorStoreProvider, VectorUpsertRequest, Voice, VoiceProvider, VoiceSynthesisInput, VoiceSynthesisResult, assertPrimaryOpenBankingReady, createDefaultIntegrationSpecRegistry, defineIntegration, elevenLabsIntegrationSpec, ensurePrimaryOpenBankingIntegration, falIntegrationSpec, fathomIntegrationSpec, firefliesIntegrationSpec, gcsStorageIntegrationSpec, gmailIntegrationSpec, googleCalendarIntegrationSpec, gradiumIntegrationSpec, granolaIntegrationSpec, jiraIntegrationSpec, linearIntegrationSpec, makeIntegrationSpecKey, mistralIntegrationSpec, notionIntegrationSpec, posthogIntegrationSpec, postmarkIntegrationSpec, powensIntegrationSpec, qdrantIntegrationSpec, redactMeetingRecorderTelemetryPayload, redactOpenBankingTelemetryPayload, registerElevenLabsIntegration, registerFalIntegration, registerFathomIntegration, registerFirefliesIntegration, registerGcsStorageIntegration, registerGmailIntegration, registerGoogleCalendarIntegration, registerGradiumIntegration, registerGranolaIntegration, registerJiraIntegration, registerLinearIntegration, registerMeetingRecorderContracts, registerMistralIntegration, registerNotionIntegration, registerOpenBankingContracts, registerPosthogIntegration, registerPostmarkIntegration, registerPowensIntegration, registerQdrantIntegration, registerStripeIntegration, registerSupabasePostgresIntegration, registerSupabaseVectorIntegration, registerTldvIntegration, registerTwilioSmsIntegration, stripeIntegrationSpec, supabasePostgresIntegrationSpec, supabaseVectorIntegrationSpec, tldvIntegrationSpec, twilioSmsIntegrationSpec };
@@ -2,13 +2,25 @@ import { IntegrationSpecRegistry, defineIntegration, makeIntegrationSpecKey } fr
2
2
  import { registerStripeIntegration, stripeIntegrationSpec } from "./providers/stripe.js";
3
3
  import { postmarkIntegrationSpec, registerPostmarkIntegration } from "./providers/postmark.js";
4
4
  import { qdrantIntegrationSpec, registerQdrantIntegration } from "./providers/qdrant.js";
5
+ import { registerSupabaseVectorIntegration, supabaseVectorIntegrationSpec } from "./providers/supabase-vector.js";
6
+ import { registerSupabasePostgresIntegration, supabasePostgresIntegrationSpec } from "./providers/supabase-postgres.js";
5
7
  import { mistralIntegrationSpec, registerMistralIntegration } from "./providers/mistral.js";
6
8
  import { elevenLabsIntegrationSpec, registerElevenLabsIntegration } from "./providers/elevenlabs.js";
9
+ import { gradiumIntegrationSpec, registerGradiumIntegration } from "./providers/gradium.js";
10
+ import { falIntegrationSpec, registerFalIntegration } from "./providers/fal.js";
7
11
  import { gmailIntegrationSpec, registerGmailIntegration } from "./providers/gmail.js";
8
12
  import { googleCalendarIntegrationSpec, registerGoogleCalendarIntegration } from "./providers/google-calendar.js";
9
13
  import { registerTwilioSmsIntegration, twilioSmsIntegrationSpec } from "./providers/twilio-sms.js";
10
14
  import { gcsStorageIntegrationSpec, registerGcsStorageIntegration } from "./providers/gcs-storage.js";
11
15
  import { powensIntegrationSpec, registerPowensIntegration } from "./providers/powens.js";
16
+ import { posthogIntegrationSpec, registerPosthogIntegration } from "./providers/posthog.js";
17
+ import { linearIntegrationSpec, registerLinearIntegration } from "./providers/linear.js";
18
+ import { jiraIntegrationSpec, registerJiraIntegration } from "./providers/jira.js";
19
+ import { notionIntegrationSpec, registerNotionIntegration } from "./providers/notion.js";
20
+ import { granolaIntegrationSpec, registerGranolaIntegration } from "./providers/granola.js";
21
+ import { registerTldvIntegration, tldvIntegrationSpec } from "./providers/tldv.js";
22
+ import { firefliesIntegrationSpec, registerFirefliesIntegration } from "./providers/fireflies.js";
23
+ import { fathomIntegrationSpec, registerFathomIntegration } from "./providers/fathom.js";
12
24
  import { createDefaultIntegrationSpecRegistry } from "./providers/registry.js";
13
25
  import "./providers/index.js";
14
26
  import { AccountBalanceRecord, BankAccountRecord, BankTransactionRecord } from "./openbanking/models.js";
@@ -19,5 +31,12 @@ import { OpenBankingGetBalances, OpenBankingRefreshBalances } from "./openbankin
19
31
  import { OpenBankingFeature } from "./openbanking/openbanking.feature.js";
20
32
  import { registerOpenBankingContracts } from "./openbanking/contracts/index.js";
21
33
  import { assertPrimaryOpenBankingReady, ensurePrimaryOpenBankingIntegration } from "./openbanking/guards.js";
34
+ import { MeetingParticipantRecord, MeetingRecord, MeetingRecorderWebhookEventRecord, MeetingTranscriptRecord, MeetingTranscriptSegmentRecord } from "./meeting-recorder/models.js";
35
+ import { MeetingRecorderGetMeeting, MeetingRecorderListMeetings } from "./meeting-recorder/contracts/meetings.js";
36
+ import { MEETING_RECORDER_PII_FIELDS, MEETING_RECORDER_TELEMETRY_EVENTS, redactMeetingRecorderTelemetryPayload } from "./meeting-recorder/telemetry.js";
37
+ import { MeetingRecorderGetTranscript, MeetingRecorderSyncTranscript } from "./meeting-recorder/contracts/transcripts.js";
38
+ import { MeetingRecorderWebhookIngest } from "./meeting-recorder/contracts/webhooks.js";
39
+ import { MeetingRecorderFeature } from "./meeting-recorder/meeting-recorder.feature.js";
40
+ import { registerMeetingRecorderContracts } from "./meeting-recorder/contracts/index.js";
22
41
 
23
- export { AccountBalanceRecord, BankAccountRecord, BankTransactionRecord, IntegrationSpecRegistry, OPENBANKING_PII_FIELDS, OPENBANKING_TELEMETRY_EVENTS, OpenBankingFeature, OpenBankingGetAccount, OpenBankingGetBalances, OpenBankingListAccounts, OpenBankingListTransactions, OpenBankingRefreshBalances, OpenBankingSyncAccounts, OpenBankingSyncTransactions, assertPrimaryOpenBankingReady, createDefaultIntegrationSpecRegistry, defineIntegration, elevenLabsIntegrationSpec, ensurePrimaryOpenBankingIntegration, gcsStorageIntegrationSpec, gmailIntegrationSpec, googleCalendarIntegrationSpec, makeIntegrationSpecKey, mistralIntegrationSpec, postmarkIntegrationSpec, powensIntegrationSpec, qdrantIntegrationSpec, redactOpenBankingTelemetryPayload, registerElevenLabsIntegration, registerGcsStorageIntegration, registerGmailIntegration, registerGoogleCalendarIntegration, registerMistralIntegration, registerOpenBankingContracts, registerPostmarkIntegration, registerPowensIntegration, registerQdrantIntegration, registerStripeIntegration, registerTwilioSmsIntegration, stripeIntegrationSpec, twilioSmsIntegrationSpec };
42
+ export { AccountBalanceRecord, BankAccountRecord, BankTransactionRecord, IntegrationSpecRegistry, MEETING_RECORDER_PII_FIELDS, MEETING_RECORDER_TELEMETRY_EVENTS, MeetingParticipantRecord, MeetingRecord as MeetingRecordModel, MeetingRecorderFeature, MeetingRecorderGetMeeting, MeetingRecorderGetTranscript, MeetingRecorderListMeetings, MeetingRecorderSyncTranscript, MeetingRecorderWebhookEventRecord, MeetingRecorderWebhookIngest, MeetingTranscriptRecord as MeetingTranscriptRecordModel, MeetingTranscriptSegmentRecord, OPENBANKING_PII_FIELDS, OPENBANKING_TELEMETRY_EVENTS, OpenBankingFeature, OpenBankingGetAccount, OpenBankingGetBalances, OpenBankingListAccounts, OpenBankingListTransactions, OpenBankingRefreshBalances, OpenBankingSyncAccounts, OpenBankingSyncTransactions, assertPrimaryOpenBankingReady, createDefaultIntegrationSpecRegistry, defineIntegration, elevenLabsIntegrationSpec, ensurePrimaryOpenBankingIntegration, falIntegrationSpec, fathomIntegrationSpec, firefliesIntegrationSpec, gcsStorageIntegrationSpec, gmailIntegrationSpec, googleCalendarIntegrationSpec, gradiumIntegrationSpec, granolaIntegrationSpec, jiraIntegrationSpec, linearIntegrationSpec, makeIntegrationSpecKey, mistralIntegrationSpec, notionIntegrationSpec, posthogIntegrationSpec, postmarkIntegrationSpec, powensIntegrationSpec, qdrantIntegrationSpec, redactMeetingRecorderTelemetryPayload, redactOpenBankingTelemetryPayload, registerElevenLabsIntegration, registerFalIntegration, registerFathomIntegration, registerFirefliesIntegration, registerGcsStorageIntegration, registerGmailIntegration, registerGoogleCalendarIntegration, registerGradiumIntegration, registerGranolaIntegration, registerJiraIntegration, registerLinearIntegration, registerMeetingRecorderContracts, registerMistralIntegration, registerNotionIntegration, registerOpenBankingContracts, registerPosthogIntegration, registerPostmarkIntegration, registerPowensIntegration, registerQdrantIntegration, registerStripeIntegration, registerSupabasePostgresIntegration, registerSupabaseVectorIntegration, registerTldvIntegration, registerTwilioSmsIntegration, stripeIntegrationSpec, supabasePostgresIntegrationSpec, supabaseVectorIntegrationSpec, tldvIntegrationSpec, twilioSmsIntegrationSpec };
@@ -0,0 +1,10 @@
1
+ import { OperationSpecRegistry } from "../../../operations/registry.js";
2
+ import { MeetingRecorderGetMeeting, MeetingRecorderListMeetings } from "./meetings.js";
3
+ import { MeetingRecorderGetTranscript, MeetingRecorderSyncTranscript } from "./transcripts.js";
4
+ import { MeetingRecorderWebhookIngest } from "./webhooks.js";
5
+ import { MeetingRecorderFeature } from "../meeting-recorder.feature.js";
6
+
7
+ //#region src/integrations/meeting-recorder/contracts/index.d.ts
8
+ declare function registerMeetingRecorderContracts(registry: OperationSpecRegistry): OperationSpecRegistry;
9
+ //#endregion
10
+ export { MeetingRecorderFeature, MeetingRecorderGetMeeting, MeetingRecorderGetTranscript, MeetingRecorderListMeetings, MeetingRecorderSyncTranscript, MeetingRecorderWebhookIngest, registerMeetingRecorderContracts };
@@ -0,0 +1,12 @@
1
+ import { MeetingRecorderGetMeeting, MeetingRecorderListMeetings, registerMeetingRecorderMeetingContracts } from "./meetings.js";
2
+ import { MeetingRecorderGetTranscript, MeetingRecorderSyncTranscript, registerMeetingRecorderTranscriptContracts } from "./transcripts.js";
3
+ import { MeetingRecorderWebhookIngest, registerMeetingRecorderWebhookContracts } from "./webhooks.js";
4
+ import { MeetingRecorderFeature } from "../meeting-recorder.feature.js";
5
+
6
+ //#region src/integrations/meeting-recorder/contracts/index.ts
7
+ function registerMeetingRecorderContracts(registry) {
8
+ return registerMeetingRecorderWebhookContracts(registerMeetingRecorderTranscriptContracts(registerMeetingRecorderMeetingContracts(registry)));
9
+ }
10
+
11
+ //#endregion
12
+ export { MeetingRecorderFeature, MeetingRecorderGetMeeting, MeetingRecorderGetTranscript, MeetingRecorderListMeetings, MeetingRecorderSyncTranscript, MeetingRecorderWebhookIngest, registerMeetingRecorderContracts };
@@ -0,0 +1,458 @@
1
+ import { AnyOperationSpec, OperationSpec } from "../../../operations/operation.js";
2
+ import "../../../operations/index.js";
3
+ import { OperationSpecRegistry } from "../../../operations/registry.js";
4
+ import "../../../index.js";
5
+ import * as _contractspec_lib_schema0 from "@contractspec/lib.schema";
6
+ import { SchemaModel } from "@contractspec/lib.schema";
7
+
8
+ //#region src/integrations/meeting-recorder/contracts/meetings.d.ts
9
+ declare const MeetingRecorderListMeetings: OperationSpec<SchemaModel<{
10
+ tenantId: {
11
+ type: _contractspec_lib_schema0.FieldType<string, string>;
12
+ isOptional: false;
13
+ };
14
+ connectionId: {
15
+ type: _contractspec_lib_schema0.FieldType<string, string>;
16
+ isOptional: true;
17
+ };
18
+ from: {
19
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
20
+ isOptional: true;
21
+ };
22
+ to: {
23
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
24
+ isOptional: true;
25
+ };
26
+ cursor: {
27
+ type: _contractspec_lib_schema0.FieldType<string, string>;
28
+ isOptional: true;
29
+ };
30
+ pageSize: {
31
+ type: _contractspec_lib_schema0.FieldType<number, number>;
32
+ isOptional: true;
33
+ };
34
+ query: {
35
+ type: _contractspec_lib_schema0.FieldType<string, string>;
36
+ isOptional: true;
37
+ };
38
+ organizerEmail: {
39
+ type: _contractspec_lib_schema0.FieldType<string, string>;
40
+ isOptional: true;
41
+ };
42
+ participantEmail: {
43
+ type: _contractspec_lib_schema0.FieldType<string, string>;
44
+ isOptional: true;
45
+ };
46
+ includeTranscript: {
47
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
48
+ isOptional: true;
49
+ };
50
+ includeSummary: {
51
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
52
+ isOptional: true;
53
+ };
54
+ }>, SchemaModel<{
55
+ meetings: {
56
+ type: SchemaModel<{
57
+ id: {
58
+ type: _contractspec_lib_schema0.FieldType<string, string>;
59
+ isOptional: false;
60
+ };
61
+ tenantId: {
62
+ type: _contractspec_lib_schema0.FieldType<string, string>;
63
+ isOptional: false;
64
+ };
65
+ connectionId: {
66
+ type: _contractspec_lib_schema0.FieldType<string, string>;
67
+ isOptional: false;
68
+ };
69
+ externalId: {
70
+ type: _contractspec_lib_schema0.FieldType<string, string>;
71
+ isOptional: false;
72
+ };
73
+ title: {
74
+ type: _contractspec_lib_schema0.FieldType<string, string>;
75
+ isOptional: true;
76
+ };
77
+ summary: {
78
+ type: _contractspec_lib_schema0.FieldType<string, string>;
79
+ isOptional: true;
80
+ };
81
+ organizer: {
82
+ type: SchemaModel<{
83
+ id: {
84
+ type: _contractspec_lib_schema0.FieldType<string, string>;
85
+ isOptional: true;
86
+ };
87
+ externalId: {
88
+ type: _contractspec_lib_schema0.FieldType<string, string>;
89
+ isOptional: true;
90
+ };
91
+ name: {
92
+ type: _contractspec_lib_schema0.FieldType<string, string>;
93
+ isOptional: true;
94
+ };
95
+ email: {
96
+ type: _contractspec_lib_schema0.FieldType<string, string>;
97
+ isOptional: true;
98
+ };
99
+ role: {
100
+ type: _contractspec_lib_schema0.FieldType<string, string>;
101
+ isOptional: true;
102
+ };
103
+ isExternal: {
104
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
105
+ isOptional: true;
106
+ };
107
+ metadata: {
108
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
109
+ isOptional: true;
110
+ };
111
+ }>;
112
+ isOptional: true;
113
+ };
114
+ invitees: {
115
+ type: SchemaModel<{
116
+ id: {
117
+ type: _contractspec_lib_schema0.FieldType<string, string>;
118
+ isOptional: true;
119
+ };
120
+ externalId: {
121
+ type: _contractspec_lib_schema0.FieldType<string, string>;
122
+ isOptional: true;
123
+ };
124
+ name: {
125
+ type: _contractspec_lib_schema0.FieldType<string, string>;
126
+ isOptional: true;
127
+ };
128
+ email: {
129
+ type: _contractspec_lib_schema0.FieldType<string, string>;
130
+ isOptional: true;
131
+ };
132
+ role: {
133
+ type: _contractspec_lib_schema0.FieldType<string, string>;
134
+ isOptional: true;
135
+ };
136
+ isExternal: {
137
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
138
+ isOptional: true;
139
+ };
140
+ metadata: {
141
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
142
+ isOptional: true;
143
+ };
144
+ }>;
145
+ isArray: true;
146
+ isOptional: true;
147
+ };
148
+ participants: {
149
+ type: SchemaModel<{
150
+ id: {
151
+ type: _contractspec_lib_schema0.FieldType<string, string>;
152
+ isOptional: true;
153
+ };
154
+ externalId: {
155
+ type: _contractspec_lib_schema0.FieldType<string, string>;
156
+ isOptional: true;
157
+ };
158
+ name: {
159
+ type: _contractspec_lib_schema0.FieldType<string, string>;
160
+ isOptional: true;
161
+ };
162
+ email: {
163
+ type: _contractspec_lib_schema0.FieldType<string, string>;
164
+ isOptional: true;
165
+ };
166
+ role: {
167
+ type: _contractspec_lib_schema0.FieldType<string, string>;
168
+ isOptional: true;
169
+ };
170
+ isExternal: {
171
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
172
+ isOptional: true;
173
+ };
174
+ metadata: {
175
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
176
+ isOptional: true;
177
+ };
178
+ }>;
179
+ isArray: true;
180
+ isOptional: true;
181
+ };
182
+ scheduledStartAt: {
183
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
184
+ isOptional: true;
185
+ };
186
+ scheduledEndAt: {
187
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
188
+ isOptional: true;
189
+ };
190
+ recordingStartAt: {
191
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
192
+ isOptional: true;
193
+ };
194
+ recordingEndAt: {
195
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
196
+ isOptional: true;
197
+ };
198
+ durationSeconds: {
199
+ type: _contractspec_lib_schema0.FieldType<number, number>;
200
+ isOptional: true;
201
+ };
202
+ meetingUrl: {
203
+ type: _contractspec_lib_schema0.FieldType<string, string>;
204
+ isOptional: true;
205
+ };
206
+ recordingUrl: {
207
+ type: _contractspec_lib_schema0.FieldType<string, string>;
208
+ isOptional: true;
209
+ };
210
+ shareUrl: {
211
+ type: _contractspec_lib_schema0.FieldType<string, string>;
212
+ isOptional: true;
213
+ };
214
+ sourcePlatform: {
215
+ type: _contractspec_lib_schema0.FieldType<string, string>;
216
+ isOptional: true;
217
+ };
218
+ language: {
219
+ type: _contractspec_lib_schema0.FieldType<string, string>;
220
+ isOptional: true;
221
+ };
222
+ transcriptAvailable: {
223
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
224
+ isOptional: true;
225
+ };
226
+ createdAt: {
227
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
228
+ isOptional: true;
229
+ };
230
+ updatedAt: {
231
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
232
+ isOptional: true;
233
+ };
234
+ metadata: {
235
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
236
+ isOptional: true;
237
+ };
238
+ }>;
239
+ isOptional: false;
240
+ isArray: true;
241
+ };
242
+ nextCursor: {
243
+ type: _contractspec_lib_schema0.FieldType<string, string>;
244
+ isOptional: true;
245
+ };
246
+ hasMore: {
247
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
248
+ isOptional: true;
249
+ };
250
+ }>, undefined>;
251
+ declare const MeetingRecorderGetMeeting: OperationSpec<SchemaModel<{
252
+ tenantId: {
253
+ type: _contractspec_lib_schema0.FieldType<string, string>;
254
+ isOptional: false;
255
+ };
256
+ meetingId: {
257
+ type: _contractspec_lib_schema0.FieldType<string, string>;
258
+ isOptional: false;
259
+ };
260
+ connectionId: {
261
+ type: _contractspec_lib_schema0.FieldType<string, string>;
262
+ isOptional: true;
263
+ };
264
+ includeTranscript: {
265
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
266
+ isOptional: true;
267
+ };
268
+ includeSummary: {
269
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
270
+ isOptional: true;
271
+ };
272
+ }>, SchemaModel<{
273
+ id: {
274
+ type: _contractspec_lib_schema0.FieldType<string, string>;
275
+ isOptional: false;
276
+ };
277
+ tenantId: {
278
+ type: _contractspec_lib_schema0.FieldType<string, string>;
279
+ isOptional: false;
280
+ };
281
+ connectionId: {
282
+ type: _contractspec_lib_schema0.FieldType<string, string>;
283
+ isOptional: false;
284
+ };
285
+ externalId: {
286
+ type: _contractspec_lib_schema0.FieldType<string, string>;
287
+ isOptional: false;
288
+ };
289
+ title: {
290
+ type: _contractspec_lib_schema0.FieldType<string, string>;
291
+ isOptional: true;
292
+ };
293
+ summary: {
294
+ type: _contractspec_lib_schema0.FieldType<string, string>;
295
+ isOptional: true;
296
+ };
297
+ organizer: {
298
+ type: SchemaModel<{
299
+ id: {
300
+ type: _contractspec_lib_schema0.FieldType<string, string>;
301
+ isOptional: true;
302
+ };
303
+ externalId: {
304
+ type: _contractspec_lib_schema0.FieldType<string, string>;
305
+ isOptional: true;
306
+ };
307
+ name: {
308
+ type: _contractspec_lib_schema0.FieldType<string, string>;
309
+ isOptional: true;
310
+ };
311
+ email: {
312
+ type: _contractspec_lib_schema0.FieldType<string, string>;
313
+ isOptional: true;
314
+ };
315
+ role: {
316
+ type: _contractspec_lib_schema0.FieldType<string, string>;
317
+ isOptional: true;
318
+ };
319
+ isExternal: {
320
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
321
+ isOptional: true;
322
+ };
323
+ metadata: {
324
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
325
+ isOptional: true;
326
+ };
327
+ }>;
328
+ isOptional: true;
329
+ };
330
+ invitees: {
331
+ type: SchemaModel<{
332
+ id: {
333
+ type: _contractspec_lib_schema0.FieldType<string, string>;
334
+ isOptional: true;
335
+ };
336
+ externalId: {
337
+ type: _contractspec_lib_schema0.FieldType<string, string>;
338
+ isOptional: true;
339
+ };
340
+ name: {
341
+ type: _contractspec_lib_schema0.FieldType<string, string>;
342
+ isOptional: true;
343
+ };
344
+ email: {
345
+ type: _contractspec_lib_schema0.FieldType<string, string>;
346
+ isOptional: true;
347
+ };
348
+ role: {
349
+ type: _contractspec_lib_schema0.FieldType<string, string>;
350
+ isOptional: true;
351
+ };
352
+ isExternal: {
353
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
354
+ isOptional: true;
355
+ };
356
+ metadata: {
357
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
358
+ isOptional: true;
359
+ };
360
+ }>;
361
+ isArray: true;
362
+ isOptional: true;
363
+ };
364
+ participants: {
365
+ type: SchemaModel<{
366
+ id: {
367
+ type: _contractspec_lib_schema0.FieldType<string, string>;
368
+ isOptional: true;
369
+ };
370
+ externalId: {
371
+ type: _contractspec_lib_schema0.FieldType<string, string>;
372
+ isOptional: true;
373
+ };
374
+ name: {
375
+ type: _contractspec_lib_schema0.FieldType<string, string>;
376
+ isOptional: true;
377
+ };
378
+ email: {
379
+ type: _contractspec_lib_schema0.FieldType<string, string>;
380
+ isOptional: true;
381
+ };
382
+ role: {
383
+ type: _contractspec_lib_schema0.FieldType<string, string>;
384
+ isOptional: true;
385
+ };
386
+ isExternal: {
387
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
388
+ isOptional: true;
389
+ };
390
+ metadata: {
391
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
392
+ isOptional: true;
393
+ };
394
+ }>;
395
+ isArray: true;
396
+ isOptional: true;
397
+ };
398
+ scheduledStartAt: {
399
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
400
+ isOptional: true;
401
+ };
402
+ scheduledEndAt: {
403
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
404
+ isOptional: true;
405
+ };
406
+ recordingStartAt: {
407
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
408
+ isOptional: true;
409
+ };
410
+ recordingEndAt: {
411
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
412
+ isOptional: true;
413
+ };
414
+ durationSeconds: {
415
+ type: _contractspec_lib_schema0.FieldType<number, number>;
416
+ isOptional: true;
417
+ };
418
+ meetingUrl: {
419
+ type: _contractspec_lib_schema0.FieldType<string, string>;
420
+ isOptional: true;
421
+ };
422
+ recordingUrl: {
423
+ type: _contractspec_lib_schema0.FieldType<string, string>;
424
+ isOptional: true;
425
+ };
426
+ shareUrl: {
427
+ type: _contractspec_lib_schema0.FieldType<string, string>;
428
+ isOptional: true;
429
+ };
430
+ sourcePlatform: {
431
+ type: _contractspec_lib_schema0.FieldType<string, string>;
432
+ isOptional: true;
433
+ };
434
+ language: {
435
+ type: _contractspec_lib_schema0.FieldType<string, string>;
436
+ isOptional: true;
437
+ };
438
+ transcriptAvailable: {
439
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
440
+ isOptional: true;
441
+ };
442
+ createdAt: {
443
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
444
+ isOptional: true;
445
+ };
446
+ updatedAt: {
447
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
448
+ isOptional: true;
449
+ };
450
+ metadata: {
451
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
452
+ isOptional: true;
453
+ };
454
+ }>, undefined>;
455
+ declare const meetingRecorderMeetingContracts: Record<string, AnyOperationSpec>;
456
+ declare function registerMeetingRecorderMeetingContracts(registry: OperationSpecRegistry): OperationSpecRegistry;
457
+ //#endregion
458
+ export { MeetingRecorderGetMeeting, MeetingRecorderListMeetings, meetingRecorderMeetingContracts, registerMeetingRecorderMeetingContracts };