@insignia-education/api-sdk-js 0.15.87 → 0.15.88

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insignia-education/api-sdk-js",
3
- "version": "0.15.87",
3
+ "version": "0.15.88",
4
4
  "description": "JavaScript SDK for the Insignia Education API",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -27,6 +27,9 @@ export default class Employee {
27
27
  /** Reassign a single session's teacher (not the whole course_date — that's a course-config action). */
28
28
  changeSessionTeacher: (sessionId, teacherId) =>
29
29
  this.#client.patch(`${base}/sessions/${sessionId}/teacher`, { teacher_id: teacherId }),
30
+ /** Freeform Zoom meeting for the requesting employee (no course, no student roster). time is "HH:mm". */
31
+ createCustomMeeting: (topic, date, time, duration) =>
32
+ this.#client.post(`${base}/custom-meeting`, { topic, date, time, duration }),
30
33
  };
31
34
  }
32
35
  }