@absolutejs/meeting 0.0.1-beta.5 → 0.0.1-beta.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/README.md CHANGED
@@ -52,4 +52,4 @@ reference `MeetingSource` implementation and a test harness.
52
52
 
53
53
  ## License
54
54
 
55
- CC BY-NC 4.0
55
+ Business Source License 1.1 — production use is free except offering the package as a competing hosted service (see the Additional Use Grant in [LICENSE](./LICENSE)). Converts to Apache 2.0 on May 29, 2030.
package/dist/index.js CHANGED
@@ -1,4 +1,19 @@
1
1
  // @bun
2
+ var __defProp = Object.defineProperty;
3
+ var __returnValue = (v) => v;
4
+ function __exportSetter(name, newValue) {
5
+ this[name] = __returnValue.bind(null, newValue);
6
+ }
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, {
10
+ get: all[name],
11
+ enumerable: true,
12
+ configurable: true,
13
+ set: __exportSetter.bind(all, name)
14
+ });
15
+ };
16
+
2
17
  // src/meeting.ts
3
18
  import {
4
19
  createVoiceScribe
@@ -0,0 +1,2 @@
1
+ import type { CreateMeetingOptions, MeetingSession } from "./meeting";
2
+ export declare const manifest: import("@absolutejs/manifest").PackageManifest<CreateMeetingOptions, MeetingSession>;