@contractspec/example.meeting-recorder-providers 3.7.6 → 3.7.7
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.
- package/.turbo/turbo-build.log +3 -3
- package/AGENTS.md +43 -19
- package/README.md +62 -16
- package/dist/browser/handlers/create-provider.js +2 -2
- package/dist/browser/handlers/get-transcript.js +2 -2
- package/dist/browser/handlers/list-meetings.js +2 -2
- package/dist/browser/handlers/webhook-handler.js +2 -2
- package/dist/browser/index.js +2 -2
- package/dist/handlers/create-provider.js +2 -2
- package/dist/handlers/get-transcript.js +2 -2
- package/dist/handlers/list-meetings.js +2 -2
- package/dist/handlers/webhook-handler.js +2 -2
- package/dist/index.d.ts +3 -3
- package/dist/index.js +2 -2
- package/dist/node/handlers/create-provider.js +2 -2
- package/dist/node/handlers/get-transcript.js +2 -2
- package/dist/node/handlers/list-meetings.js +2 -2
- package/dist/node/handlers/webhook-handler.js +2 -2
- package/dist/node/index.js +2 -2
- package/package.json +6 -6
- package/src/connection.sample.ts +102 -102
- package/src/docs/meeting-recorder-providers.docblock.ts +45 -45
- package/src/example.ts +26 -26
- package/src/handlers/create-provider.ts +84 -84
- package/src/handlers/get-transcript.ts +10 -9
- package/src/handlers/list-meetings.ts +10 -9
- package/src/handlers/webhook-handler.ts +49 -48
- package/src/index.ts +3 -3
- package/src/meeting-recorder-providers.feature.ts +18 -18
- package/tsconfig.json +7 -7
- package/tsdown.config.js +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
|
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
5
|
[contractspec-bun-build] transpile target=bun root=src entries=10 noBundle=false
|
|
6
|
-
Bundled 10 modules in
|
|
6
|
+
Bundled 10 modules in 29ms
|
|
7
7
|
|
|
8
8
|
./connection.sample.js 3.53 KB (entry point)
|
|
9
9
|
./index.js 12.11 KB (entry point)
|
|
@@ -17,7 +17,7 @@ Bundled 10 modules in 16ms
|
|
|
17
17
|
handlers/create-provider.js 2.68 KB (entry point)
|
|
18
18
|
|
|
19
19
|
[contractspec-bun-build] transpile target=node root=src entries=10 noBundle=false
|
|
20
|
-
Bundled 10 modules in
|
|
20
|
+
Bundled 10 modules in 18ms
|
|
21
21
|
|
|
22
22
|
./connection.sample.js 3.52 KB (entry point)
|
|
23
23
|
./index.js 12.1 KB (entry point)
|
|
@@ -31,7 +31,7 @@ Bundled 10 modules in 21ms
|
|
|
31
31
|
handlers/create-provider.js 2.68 KB (entry point)
|
|
32
32
|
|
|
33
33
|
[contractspec-bun-build] transpile target=browser root=src entries=10 noBundle=false
|
|
34
|
-
Bundled 10 modules in
|
|
34
|
+
Bundled 10 modules in 20ms
|
|
35
35
|
|
|
36
36
|
./connection.sample.js 3.52 KB (entry point)
|
|
37
37
|
./index.js 12.1 KB (entry point)
|
package/AGENTS.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# AI Agent Guide
|
|
1
|
+
# AI Agent Guide — `@contractspec/example.meeting-recorder-providers`
|
|
2
2
|
|
|
3
3
|
Scope: `packages/examples/meeting-recorder-providers/*`
|
|
4
4
|
|
|
@@ -6,28 +6,52 @@ Meeting recorder provider example: list meetings, transcripts, and webhooks.
|
|
|
6
6
|
|
|
7
7
|
## Quick Context
|
|
8
8
|
|
|
9
|
-
-
|
|
10
|
-
-
|
|
9
|
+
- Layer: `example`.
|
|
10
|
+
- Package visibility: published package.
|
|
11
|
+
- Primary consumers are example explorers, template authors, and documentation readers.
|
|
12
|
+
- Related packages: `@contractspec/integration.providers-impls`, `@contractspec/lib.contracts-integrations`, `@contractspec/lib.contracts-spec`, `@contractspec/tool.bun`, `@contractspec/tool.typescript`.
|
|
11
13
|
|
|
12
|
-
##
|
|
14
|
+
## Architecture
|
|
13
15
|
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
16
|
+
- `src/connection.sample.ts` is part of the package's public or composition surface.
|
|
17
|
+
- `src/docs/` contains docblocks and documentation-facing exports.
|
|
18
|
+
- `src/example.ts` is the runnable example entrypoint.
|
|
19
|
+
- `src/handlers/` contains handlers or demo adapters wired to contract surfaces.
|
|
20
|
+
- `src/index.ts` is the root public barrel and package entrypoint.
|
|
21
|
+
- `src/meeting-recorder-providers.feature.ts` defines a feature entrypoint.
|
|
17
22
|
|
|
18
|
-
## Public
|
|
23
|
+
## Public Surface
|
|
19
24
|
|
|
20
|
-
- `.`
|
|
21
|
-
- `./connection.sample`
|
|
22
|
-
- `./
|
|
23
|
-
- `./
|
|
24
|
-
- `./
|
|
25
|
-
- `./handlers/
|
|
26
|
-
- `./
|
|
25
|
+
- Export `.` resolves through `./src/index.ts`.
|
|
26
|
+
- Export `./connection.sample` resolves through `./src/connection.sample.ts`.
|
|
27
|
+
- Export `./docs` resolves through `./src/docs/index.ts`.
|
|
28
|
+
- Export `./docs/meeting-recorder-providers.docblock` resolves through `./src/docs/meeting-recorder-providers.docblock.ts`.
|
|
29
|
+
- Export `./example` resolves through `./src/example.ts`.
|
|
30
|
+
- Export `./handlers/create-provider` resolves through `./src/handlers/create-provider.ts`.
|
|
31
|
+
- Export `./handlers/get-transcript` resolves through `./src/handlers/get-transcript.ts`.
|
|
32
|
+
- Export `./handlers/list-meetings` resolves through `./src/handlers/list-meetings.ts`.
|
|
33
|
+
- Export `./handlers/webhook-handler` resolves through `./src/handlers/webhook-handler.ts`.
|
|
34
|
+
- Export `./meeting-recorder-providers.feature` resolves through `./src/meeting-recorder-providers.feature.ts`.
|
|
35
|
+
|
|
36
|
+
## Guardrails
|
|
37
|
+
|
|
38
|
+
- Keep the example package demonstrative, buildable, and aligned with the exported feature surface.
|
|
39
|
+
- Do not add hidden production assumptions that are not actually implemented in the example.
|
|
40
|
+
- Changes here can affect downstream packages such as `@contractspec/integration.providers-impls`, `@contractspec/lib.contracts-integrations`, `@contractspec/lib.contracts-spec`, `@contractspec/tool.bun`, `@contractspec/tool.typescript`.
|
|
41
|
+
- Changes here can affect downstream packages such as `@contractspec/integration.providers-impls`, `@contractspec/lib.contracts-integrations`, `@contractspec/lib.contracts-spec`, `@contractspec/tool.bun`, `@contractspec/tool.typescript`.
|
|
27
42
|
|
|
28
43
|
## Local Commands
|
|
29
44
|
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
45
|
+
- `bun run dev` — contractspec-bun-build dev
|
|
46
|
+
- `bun run build` — bun run prebuild && bun run build:bundle && bun run build:types
|
|
47
|
+
- `bun run test` — bun test --pass-with-no-tests
|
|
48
|
+
- `bun run lint` — bun lint:fix
|
|
49
|
+
- `bun run lint:check` — biome check .
|
|
50
|
+
- `bun run lint:fix` — biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .
|
|
51
|
+
- `bun run typecheck` — tsc --noEmit
|
|
52
|
+
- `bun run publish:pkg` — bun publish --tolerate-republish --ignore-scripts --verbose
|
|
53
|
+
- `bun run publish:pkg:canary` — bun publish:pkg --tag canary
|
|
54
|
+
- `bun run clean` — rimraf dist .turbo
|
|
55
|
+
- `bun run build:bundle` — contractspec-bun-build transpile
|
|
56
|
+
- `bun run build:types` — contractspec-bun-build types
|
|
57
|
+
- `bun run prebuild` — contractspec-bun-build prebuild
|
package/README.md
CHANGED
|
@@ -1,27 +1,73 @@
|
|
|
1
1
|
# @contractspec/example.meeting-recorder-providers
|
|
2
2
|
|
|
3
|
-
Website: https://contractspec.io
|
|
3
|
+
Website: https://contractspec.io
|
|
4
4
|
|
|
5
|
-
**Meeting recorder provider
|
|
5
|
+
**Meeting recorder provider example: list meetings, transcripts, and webhooks.**
|
|
6
6
|
|
|
7
7
|
## What This Demonstrates
|
|
8
8
|
|
|
9
|
-
- Provider
|
|
10
|
-
-
|
|
11
|
-
- Webhook
|
|
9
|
+
- Provider integration pattern with connection samples.
|
|
10
|
+
- Handler-per-action pattern (create-provider, get-transcript, list-meetings, webhook-handler).
|
|
11
|
+
- Webhook handler for external event ingestion.
|
|
12
|
+
- `src/docs/` contains docblocks and documentation-facing exports.
|
|
13
|
+
- `src/handlers/` contains handlers or demo adapters wired to contract surfaces.
|
|
14
|
+
- `src/docs/` contains docblocks and documentation-facing exports.
|
|
12
15
|
|
|
13
|
-
##
|
|
16
|
+
## Running Locally
|
|
14
17
|
|
|
15
|
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
- `./example` -- example spec definition
|
|
18
|
+
From `packages/examples/meeting-recorder-providers`:
|
|
19
|
+
- `bun run dev`
|
|
20
|
+
- `bun run build`
|
|
21
|
+
- `bun run test`
|
|
22
|
+
- `bun run typecheck`
|
|
21
23
|
|
|
22
24
|
## Usage
|
|
23
25
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
Use `@contractspec/example.meeting-recorder-providers` as a reference implementation, or import its exported surfaces into a workspace that composes ContractSpec examples and bundles.
|
|
27
|
+
|
|
28
|
+
## Architecture
|
|
29
|
+
|
|
30
|
+
- `src/connection.sample.ts` is part of the package's public or composition surface.
|
|
31
|
+
- `src/docs/` contains docblocks and documentation-facing exports.
|
|
32
|
+
- `src/example.ts` is the runnable example entrypoint.
|
|
33
|
+
- `src/handlers/` contains handlers or demo adapters wired to contract surfaces.
|
|
34
|
+
- `src/index.ts` is the root public barrel and package entrypoint.
|
|
35
|
+
- `src/meeting-recorder-providers.feature.ts` defines a feature entrypoint.
|
|
36
|
+
|
|
37
|
+
## Public Entry Points
|
|
38
|
+
|
|
39
|
+
- Export `.` resolves through `./src/index.ts`.
|
|
40
|
+
- Export `./connection.sample` resolves through `./src/connection.sample.ts`.
|
|
41
|
+
- Export `./docs` resolves through `./src/docs/index.ts`.
|
|
42
|
+
- Export `./docs/meeting-recorder-providers.docblock` resolves through `./src/docs/meeting-recorder-providers.docblock.ts`.
|
|
43
|
+
- Export `./example` resolves through `./src/example.ts`.
|
|
44
|
+
- Export `./handlers/create-provider` resolves through `./src/handlers/create-provider.ts`.
|
|
45
|
+
- Export `./handlers/get-transcript` resolves through `./src/handlers/get-transcript.ts`.
|
|
46
|
+
- Export `./handlers/list-meetings` resolves through `./src/handlers/list-meetings.ts`.
|
|
47
|
+
- Export `./handlers/webhook-handler` resolves through `./src/handlers/webhook-handler.ts`.
|
|
48
|
+
- Export `./meeting-recorder-providers.feature` resolves through `./src/meeting-recorder-providers.feature.ts`.
|
|
49
|
+
|
|
50
|
+
## Local Commands
|
|
51
|
+
|
|
52
|
+
- `bun run dev` — contractspec-bun-build dev
|
|
53
|
+
- `bun run build` — bun run prebuild && bun run build:bundle && bun run build:types
|
|
54
|
+
- `bun run test` — bun test --pass-with-no-tests
|
|
55
|
+
- `bun run lint` — bun lint:fix
|
|
56
|
+
- `bun run lint:check` — biome check .
|
|
57
|
+
- `bun run lint:fix` — biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .
|
|
58
|
+
- `bun run typecheck` — tsc --noEmit
|
|
59
|
+
- `bun run publish:pkg` — bun publish --tolerate-republish --ignore-scripts --verbose
|
|
60
|
+
- `bun run publish:pkg:canary` — bun publish:pkg --tag canary
|
|
61
|
+
- `bun run clean` — rimraf dist .turbo
|
|
62
|
+
- `bun run build:bundle` — contractspec-bun-build transpile
|
|
63
|
+
- `bun run build:types` — contractspec-bun-build types
|
|
64
|
+
- `bun run prebuild` — contractspec-bun-build prebuild
|
|
65
|
+
|
|
66
|
+
## Recent Updates
|
|
67
|
+
|
|
68
|
+
- Replace eslint+prettier by biomejs to optimize speed.
|
|
69
|
+
- Missing contract layers.
|
|
70
|
+
|
|
71
|
+
## Notes
|
|
72
|
+
|
|
73
|
+
- Works alongside `@contractspec/integration.providers-impls`, `@contractspec/lib.contracts-integrations`, `@contractspec/lib.contracts-spec`, `@contractspec/tool.bun`, `@contractspec/tool.typescript`.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/handlers/create-provider.ts
|
|
2
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
3
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
2
4
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
3
5
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
4
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
5
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
6
6
|
function createMeetingRecorderProvider(input) {
|
|
7
7
|
const { integrationKey, secrets, config } = input;
|
|
8
8
|
switch (integrationKey) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/handlers/create-provider.ts
|
|
2
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
3
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
2
4
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
3
5
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
4
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
5
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
6
6
|
function createMeetingRecorderProvider(input) {
|
|
7
7
|
const { integrationKey, secrets, config } = input;
|
|
8
8
|
switch (integrationKey) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/handlers/create-provider.ts
|
|
2
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
3
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
2
4
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
3
5
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
4
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
5
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
6
6
|
function createMeetingRecorderProvider(input) {
|
|
7
7
|
const { integrationKey, secrets, config } = input;
|
|
8
8
|
switch (integrationKey) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/handlers/create-provider.ts
|
|
2
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
3
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
2
4
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
3
5
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
4
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
5
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
6
6
|
function createMeetingRecorderProvider(input) {
|
|
7
7
|
const { integrationKey, secrets, config } = input;
|
|
8
8
|
switch (integrationKey) {
|
package/dist/browser/index.js
CHANGED
|
@@ -191,10 +191,10 @@ var example = defineExample({
|
|
|
191
191
|
var example_default = example;
|
|
192
192
|
|
|
193
193
|
// src/handlers/create-provider.ts
|
|
194
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
195
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
194
196
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
195
197
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
196
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
197
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
198
198
|
function createMeetingRecorderProvider(input) {
|
|
199
199
|
const { integrationKey, secrets, config } = input;
|
|
200
200
|
switch (integrationKey) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/handlers/create-provider.ts
|
|
3
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
4
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
3
5
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
4
6
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
5
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
6
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
7
7
|
function createMeetingRecorderProvider(input) {
|
|
8
8
|
const { integrationKey, secrets, config } = input;
|
|
9
9
|
switch (integrationKey) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/handlers/create-provider.ts
|
|
3
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
4
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
3
5
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
4
6
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
5
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
6
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
7
7
|
function createMeetingRecorderProvider(input) {
|
|
8
8
|
const { integrationKey, secrets, config } = input;
|
|
9
9
|
switch (integrationKey) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/handlers/create-provider.ts
|
|
3
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
4
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
3
5
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
4
6
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
5
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
6
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
7
7
|
function createMeetingRecorderProvider(input) {
|
|
8
8
|
const { integrationKey, secrets, config } = input;
|
|
9
9
|
switch (integrationKey) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/handlers/create-provider.ts
|
|
3
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
4
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
3
5
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
4
6
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
5
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
6
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
7
7
|
function createMeetingRecorderProvider(input) {
|
|
8
8
|
const { integrationKey, secrets, config } = input;
|
|
9
9
|
switch (integrationKey) {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
export * from './connection.sample';
|
|
2
|
+
export { default as example } from './example';
|
|
1
3
|
export * from './handlers/create-provider';
|
|
2
|
-
export * from './handlers/list-meetings';
|
|
3
4
|
export * from './handlers/get-transcript';
|
|
5
|
+
export * from './handlers/list-meetings';
|
|
4
6
|
export * from './handlers/webhook-handler';
|
|
5
|
-
export * from './connection.sample';
|
|
6
7
|
export * from './meeting-recorder-providers.feature';
|
|
7
|
-
export { default as example } from './example';
|
|
8
8
|
import './docs';
|
package/dist/index.js
CHANGED
|
@@ -192,10 +192,10 @@ var example = defineExample({
|
|
|
192
192
|
var example_default = example;
|
|
193
193
|
|
|
194
194
|
// src/handlers/create-provider.ts
|
|
195
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
196
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
195
197
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
196
198
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
197
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
198
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
199
199
|
function createMeetingRecorderProvider(input) {
|
|
200
200
|
const { integrationKey, secrets, config } = input;
|
|
201
201
|
switch (integrationKey) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/handlers/create-provider.ts
|
|
2
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
3
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
2
4
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
3
5
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
4
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
5
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
6
6
|
function createMeetingRecorderProvider(input) {
|
|
7
7
|
const { integrationKey, secrets, config } = input;
|
|
8
8
|
switch (integrationKey) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/handlers/create-provider.ts
|
|
2
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
3
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
2
4
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
3
5
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
4
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
5
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
6
6
|
function createMeetingRecorderProvider(input) {
|
|
7
7
|
const { integrationKey, secrets, config } = input;
|
|
8
8
|
switch (integrationKey) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/handlers/create-provider.ts
|
|
2
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
3
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
2
4
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
3
5
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
4
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
5
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
6
6
|
function createMeetingRecorderProvider(input) {
|
|
7
7
|
const { integrationKey, secrets, config } = input;
|
|
8
8
|
switch (integrationKey) {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/handlers/create-provider.ts
|
|
2
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
3
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
2
4
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
3
5
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
4
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
5
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
6
6
|
function createMeetingRecorderProvider(input) {
|
|
7
7
|
const { integrationKey, secrets, config } = input;
|
|
8
8
|
switch (integrationKey) {
|
package/dist/node/index.js
CHANGED
|
@@ -191,10 +191,10 @@ var example = defineExample({
|
|
|
191
191
|
var example_default = example;
|
|
192
192
|
|
|
193
193
|
// src/handlers/create-provider.ts
|
|
194
|
+
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
195
|
+
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
194
196
|
import { GranolaMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/granola-meeting-recorder";
|
|
195
197
|
import { TldvMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/tldv-meeting-recorder";
|
|
196
|
-
import { FirefliesMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fireflies-meeting-recorder";
|
|
197
|
-
import { FathomMeetingRecorderProvider } from "@contractspec/integration.providers-impls/impls/fathom-meeting-recorder";
|
|
198
198
|
function createMeetingRecorderProvider(input) {
|
|
199
199
|
const { integrationKey, secrets, config } = input;
|
|
200
200
|
switch (integrationKey) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.meeting-recorder-providers",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.7",
|
|
4
4
|
"description": "Meeting recorder provider example: list meetings, transcripts, and webhooks.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -85,16 +85,16 @@
|
|
|
85
85
|
"dev": "contractspec-bun-build dev",
|
|
86
86
|
"clean": "rimraf dist .turbo",
|
|
87
87
|
"lint": "bun lint:fix",
|
|
88
|
-
"lint:fix": "
|
|
89
|
-
"lint:check": "
|
|
88
|
+
"lint:fix": "biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .",
|
|
89
|
+
"lint:check": "biome check .",
|
|
90
90
|
"test": "bun test --pass-with-no-tests",
|
|
91
91
|
"prebuild": "contractspec-bun-build prebuild",
|
|
92
92
|
"typecheck": "tsc --noEmit"
|
|
93
93
|
},
|
|
94
94
|
"dependencies": {
|
|
95
|
-
"@contractspec/integration.providers-impls": "3.7.
|
|
96
|
-
"@contractspec/lib.contracts-spec": "
|
|
97
|
-
"@contractspec/lib.contracts-integrations": "3.7.
|
|
95
|
+
"@contractspec/integration.providers-impls": "3.7.7",
|
|
96
|
+
"@contractspec/lib.contracts-spec": "4.0.0",
|
|
97
|
+
"@contractspec/lib.contracts-integrations": "3.7.7"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
100
|
"@contractspec/tool.typescript": "3.7.6",
|