@insignia-education/api-sdk-js 0.15.105 → 0.15.106

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.105",
3
+ "version": "0.15.106",
4
4
  "description": "JavaScript SDK for the Insignia Education API",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -11,6 +11,8 @@ export default class Users {
11
11
  cashReceivers() { return this.#client.get('/users/cash-receivers'); }
12
12
  /** Seller-type users, for the payment forms' Seller picker (checkout + admin payment create/edit). */
13
13
  sellers() { return this.#client.get('/users/sellers'); }
14
+ /** Users flagged `can_be_on_cart` — the cart checkout's own, narrower seller picker. */
15
+ cartSellers() { return this.#client.get('/users/cart-sellers'); }
14
16
  /** Employee-only: users assignable as a course owner (super-admins, education centers, organizations). */
15
17
  assignable() { return this.#client.get('/users/assignable'); }
16
18
  /** Employee-only: users assignable as a course teacher (super-admins, admins, employees, teachers). */