@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
@@ -0,0 +1,67 @@
1
+ import { defineFeature } from "../../features/index.js";
2
+
3
+ //#region src/integrations/meeting-recorder/meeting-recorder.feature.ts
4
+ /**
5
+ * Meeting Recorder Integration Feature Module Specification
6
+ *
7
+ * Defines the feature module for meeting recorder integrations.
8
+ */
9
+ /**
10
+ * Meeting recorder feature module that bundles meeting metadata,
11
+ * transcript fetch, and webhook ingestion capabilities.
12
+ */
13
+ const MeetingRecorderFeature = defineFeature({
14
+ meta: {
15
+ key: "meeting-recorder",
16
+ version: "1.0.0",
17
+ title: "Meeting Recorder Integration",
18
+ description: "Meeting metadata, transcript retrieval, and webhook ingestion for meeting recorder providers.",
19
+ domain: "integrations",
20
+ owners: ["@platform.integrations"],
21
+ tags: [
22
+ "meeting-recorder",
23
+ "transcripts",
24
+ "integrations"
25
+ ],
26
+ stability: "experimental"
27
+ },
28
+ operations: [
29
+ {
30
+ key: "meeting-recorder.meetings.list",
31
+ version: "1.0.0"
32
+ },
33
+ {
34
+ key: "meeting-recorder.meetings.get",
35
+ version: "1.0.0"
36
+ },
37
+ {
38
+ key: "meeting-recorder.transcripts.get",
39
+ version: "1.0.0"
40
+ },
41
+ {
42
+ key: "meeting-recorder.transcripts.sync",
43
+ version: "1.0.0"
44
+ },
45
+ {
46
+ key: "meeting-recorder.webhooks.ingest",
47
+ version: "1.0.0"
48
+ }
49
+ ],
50
+ events: [],
51
+ presentations: [],
52
+ opToPresentation: [],
53
+ presentationsTargets: [],
54
+ capabilities: {
55
+ provides: [{
56
+ key: "meeting-recorder",
57
+ version: "1.0.0"
58
+ }],
59
+ requires: [{
60
+ key: "identity",
61
+ version: "1.0.0"
62
+ }]
63
+ }
64
+ });
65
+
66
+ //#endregion
67
+ export { MeetingRecorderFeature };
@@ -0,0 +1,407 @@
1
+ import * as _contractspec_lib_schema0 from "@contractspec/lib.schema";
2
+ import { SchemaModel } from "@contractspec/lib.schema";
3
+
4
+ //#region src/integrations/meeting-recorder/models.d.ts
5
+ declare const MeetingParticipantRecord: SchemaModel<{
6
+ id: {
7
+ type: _contractspec_lib_schema0.FieldType<string, string>;
8
+ isOptional: true;
9
+ };
10
+ externalId: {
11
+ type: _contractspec_lib_schema0.FieldType<string, string>;
12
+ isOptional: true;
13
+ };
14
+ name: {
15
+ type: _contractspec_lib_schema0.FieldType<string, string>;
16
+ isOptional: true;
17
+ };
18
+ email: {
19
+ type: _contractspec_lib_schema0.FieldType<string, string>;
20
+ isOptional: true;
21
+ };
22
+ role: {
23
+ type: _contractspec_lib_schema0.FieldType<string, string>;
24
+ isOptional: true;
25
+ };
26
+ isExternal: {
27
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
28
+ isOptional: true;
29
+ };
30
+ metadata: {
31
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
32
+ isOptional: true;
33
+ };
34
+ }>;
35
+ declare const MeetingTranscriptSegmentRecord: SchemaModel<{
36
+ index: {
37
+ type: _contractspec_lib_schema0.FieldType<number, number>;
38
+ isOptional: true;
39
+ };
40
+ speakerId: {
41
+ type: _contractspec_lib_schema0.FieldType<string, string>;
42
+ isOptional: true;
43
+ };
44
+ speakerName: {
45
+ type: _contractspec_lib_schema0.FieldType<string, string>;
46
+ isOptional: true;
47
+ };
48
+ speakerEmail: {
49
+ type: _contractspec_lib_schema0.FieldType<string, string>;
50
+ isOptional: true;
51
+ };
52
+ text: {
53
+ type: _contractspec_lib_schema0.FieldType<string, string>;
54
+ isOptional: false;
55
+ };
56
+ startTimeMs: {
57
+ type: _contractspec_lib_schema0.FieldType<number, number>;
58
+ isOptional: true;
59
+ };
60
+ endTimeMs: {
61
+ type: _contractspec_lib_schema0.FieldType<number, number>;
62
+ isOptional: true;
63
+ };
64
+ startTime: {
65
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
66
+ isOptional: true;
67
+ };
68
+ endTime: {
69
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
70
+ isOptional: true;
71
+ };
72
+ confidence: {
73
+ type: _contractspec_lib_schema0.FieldType<number, number>;
74
+ isOptional: true;
75
+ };
76
+ metadata: {
77
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
78
+ isOptional: true;
79
+ };
80
+ }>;
81
+ declare const MeetingRecord: SchemaModel<{
82
+ id: {
83
+ type: _contractspec_lib_schema0.FieldType<string, string>;
84
+ isOptional: false;
85
+ };
86
+ tenantId: {
87
+ type: _contractspec_lib_schema0.FieldType<string, string>;
88
+ isOptional: false;
89
+ };
90
+ connectionId: {
91
+ type: _contractspec_lib_schema0.FieldType<string, string>;
92
+ isOptional: false;
93
+ };
94
+ externalId: {
95
+ type: _contractspec_lib_schema0.FieldType<string, string>;
96
+ isOptional: false;
97
+ };
98
+ title: {
99
+ type: _contractspec_lib_schema0.FieldType<string, string>;
100
+ isOptional: true;
101
+ };
102
+ summary: {
103
+ type: _contractspec_lib_schema0.FieldType<string, string>;
104
+ isOptional: true;
105
+ };
106
+ organizer: {
107
+ type: SchemaModel<{
108
+ id: {
109
+ type: _contractspec_lib_schema0.FieldType<string, string>;
110
+ isOptional: true;
111
+ };
112
+ externalId: {
113
+ type: _contractspec_lib_schema0.FieldType<string, string>;
114
+ isOptional: true;
115
+ };
116
+ name: {
117
+ type: _contractspec_lib_schema0.FieldType<string, string>;
118
+ isOptional: true;
119
+ };
120
+ email: {
121
+ type: _contractspec_lib_schema0.FieldType<string, string>;
122
+ isOptional: true;
123
+ };
124
+ role: {
125
+ type: _contractspec_lib_schema0.FieldType<string, string>;
126
+ isOptional: true;
127
+ };
128
+ isExternal: {
129
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
130
+ isOptional: true;
131
+ };
132
+ metadata: {
133
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
134
+ isOptional: true;
135
+ };
136
+ }>;
137
+ isOptional: true;
138
+ };
139
+ invitees: {
140
+ type: SchemaModel<{
141
+ id: {
142
+ type: _contractspec_lib_schema0.FieldType<string, string>;
143
+ isOptional: true;
144
+ };
145
+ externalId: {
146
+ type: _contractspec_lib_schema0.FieldType<string, string>;
147
+ isOptional: true;
148
+ };
149
+ name: {
150
+ type: _contractspec_lib_schema0.FieldType<string, string>;
151
+ isOptional: true;
152
+ };
153
+ email: {
154
+ type: _contractspec_lib_schema0.FieldType<string, string>;
155
+ isOptional: true;
156
+ };
157
+ role: {
158
+ type: _contractspec_lib_schema0.FieldType<string, string>;
159
+ isOptional: true;
160
+ };
161
+ isExternal: {
162
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
163
+ isOptional: true;
164
+ };
165
+ metadata: {
166
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
167
+ isOptional: true;
168
+ };
169
+ }>;
170
+ isArray: true;
171
+ isOptional: true;
172
+ };
173
+ participants: {
174
+ type: SchemaModel<{
175
+ id: {
176
+ type: _contractspec_lib_schema0.FieldType<string, string>;
177
+ isOptional: true;
178
+ };
179
+ externalId: {
180
+ type: _contractspec_lib_schema0.FieldType<string, string>;
181
+ isOptional: true;
182
+ };
183
+ name: {
184
+ type: _contractspec_lib_schema0.FieldType<string, string>;
185
+ isOptional: true;
186
+ };
187
+ email: {
188
+ type: _contractspec_lib_schema0.FieldType<string, string>;
189
+ isOptional: true;
190
+ };
191
+ role: {
192
+ type: _contractspec_lib_schema0.FieldType<string, string>;
193
+ isOptional: true;
194
+ };
195
+ isExternal: {
196
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
197
+ isOptional: true;
198
+ };
199
+ metadata: {
200
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
201
+ isOptional: true;
202
+ };
203
+ }>;
204
+ isArray: true;
205
+ isOptional: true;
206
+ };
207
+ scheduledStartAt: {
208
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
209
+ isOptional: true;
210
+ };
211
+ scheduledEndAt: {
212
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
213
+ isOptional: true;
214
+ };
215
+ recordingStartAt: {
216
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
217
+ isOptional: true;
218
+ };
219
+ recordingEndAt: {
220
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
221
+ isOptional: true;
222
+ };
223
+ durationSeconds: {
224
+ type: _contractspec_lib_schema0.FieldType<number, number>;
225
+ isOptional: true;
226
+ };
227
+ meetingUrl: {
228
+ type: _contractspec_lib_schema0.FieldType<string, string>;
229
+ isOptional: true;
230
+ };
231
+ recordingUrl: {
232
+ type: _contractspec_lib_schema0.FieldType<string, string>;
233
+ isOptional: true;
234
+ };
235
+ shareUrl: {
236
+ type: _contractspec_lib_schema0.FieldType<string, string>;
237
+ isOptional: true;
238
+ };
239
+ sourcePlatform: {
240
+ type: _contractspec_lib_schema0.FieldType<string, string>;
241
+ isOptional: true;
242
+ };
243
+ language: {
244
+ type: _contractspec_lib_schema0.FieldType<string, string>;
245
+ isOptional: true;
246
+ };
247
+ transcriptAvailable: {
248
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
249
+ isOptional: true;
250
+ };
251
+ createdAt: {
252
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
253
+ isOptional: true;
254
+ };
255
+ updatedAt: {
256
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
257
+ isOptional: true;
258
+ };
259
+ metadata: {
260
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
261
+ isOptional: true;
262
+ };
263
+ }>;
264
+ declare const MeetingTranscriptRecord: SchemaModel<{
265
+ id: {
266
+ type: _contractspec_lib_schema0.FieldType<string, string>;
267
+ isOptional: false;
268
+ };
269
+ meetingId: {
270
+ type: _contractspec_lib_schema0.FieldType<string, string>;
271
+ isOptional: false;
272
+ };
273
+ tenantId: {
274
+ type: _contractspec_lib_schema0.FieldType<string, string>;
275
+ isOptional: false;
276
+ };
277
+ connectionId: {
278
+ type: _contractspec_lib_schema0.FieldType<string, string>;
279
+ isOptional: false;
280
+ };
281
+ externalId: {
282
+ type: _contractspec_lib_schema0.FieldType<string, string>;
283
+ isOptional: true;
284
+ };
285
+ format: {
286
+ type: _contractspec_lib_schema0.FieldType<string, string>;
287
+ isOptional: true;
288
+ };
289
+ text: {
290
+ type: _contractspec_lib_schema0.FieldType<string, string>;
291
+ isOptional: true;
292
+ };
293
+ segments: {
294
+ type: SchemaModel<{
295
+ index: {
296
+ type: _contractspec_lib_schema0.FieldType<number, number>;
297
+ isOptional: true;
298
+ };
299
+ speakerId: {
300
+ type: _contractspec_lib_schema0.FieldType<string, string>;
301
+ isOptional: true;
302
+ };
303
+ speakerName: {
304
+ type: _contractspec_lib_schema0.FieldType<string, string>;
305
+ isOptional: true;
306
+ };
307
+ speakerEmail: {
308
+ type: _contractspec_lib_schema0.FieldType<string, string>;
309
+ isOptional: true;
310
+ };
311
+ text: {
312
+ type: _contractspec_lib_schema0.FieldType<string, string>;
313
+ isOptional: false;
314
+ };
315
+ startTimeMs: {
316
+ type: _contractspec_lib_schema0.FieldType<number, number>;
317
+ isOptional: true;
318
+ };
319
+ endTimeMs: {
320
+ type: _contractspec_lib_schema0.FieldType<number, number>;
321
+ isOptional: true;
322
+ };
323
+ startTime: {
324
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
325
+ isOptional: true;
326
+ };
327
+ endTime: {
328
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
329
+ isOptional: true;
330
+ };
331
+ confidence: {
332
+ type: _contractspec_lib_schema0.FieldType<number, number>;
333
+ isOptional: true;
334
+ };
335
+ metadata: {
336
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
337
+ isOptional: true;
338
+ };
339
+ }>;
340
+ isArray: true;
341
+ isOptional: true;
342
+ };
343
+ language: {
344
+ type: _contractspec_lib_schema0.FieldType<string, string>;
345
+ isOptional: true;
346
+ };
347
+ sourceUrl: {
348
+ type: _contractspec_lib_schema0.FieldType<string, string>;
349
+ isOptional: true;
350
+ };
351
+ generatedAt: {
352
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
353
+ isOptional: true;
354
+ };
355
+ metadata: {
356
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
357
+ isOptional: true;
358
+ };
359
+ raw: {
360
+ type: _contractspec_lib_schema0.FieldType<unknown, unknown>;
361
+ isOptional: true;
362
+ };
363
+ }>;
364
+ declare const MeetingRecorderWebhookEventRecord: SchemaModel<{
365
+ id: {
366
+ type: _contractspec_lib_schema0.FieldType<string, string>;
367
+ isOptional: true;
368
+ };
369
+ providerKey: {
370
+ type: _contractspec_lib_schema0.FieldType<string, string>;
371
+ isOptional: true;
372
+ };
373
+ eventType: {
374
+ type: _contractspec_lib_schema0.FieldType<string, string>;
375
+ isOptional: true;
376
+ };
377
+ meetingId: {
378
+ type: _contractspec_lib_schema0.FieldType<string, string>;
379
+ isOptional: true;
380
+ };
381
+ transcriptId: {
382
+ type: _contractspec_lib_schema0.FieldType<string, string>;
383
+ isOptional: true;
384
+ };
385
+ recordingId: {
386
+ type: _contractspec_lib_schema0.FieldType<string, string>;
387
+ isOptional: true;
388
+ };
389
+ receivedAt: {
390
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
391
+ isOptional: true;
392
+ };
393
+ verified: {
394
+ type: _contractspec_lib_schema0.FieldType<boolean, boolean>;
395
+ isOptional: true;
396
+ };
397
+ payload: {
398
+ type: _contractspec_lib_schema0.FieldType<unknown, unknown>;
399
+ isOptional: true;
400
+ };
401
+ metadata: {
402
+ type: _contractspec_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
403
+ isOptional: true;
404
+ };
405
+ }>;
406
+ //#endregion
407
+ export { MeetingParticipantRecord, MeetingRecord, MeetingRecorderWebhookEventRecord, MeetingTranscriptRecord, MeetingTranscriptSegmentRecord };