@memori.ai/memori-api-client 6.22.0 → 6.23.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
 
2
2
 
3
+ ## [6.23.0](https://github.com/memori-ai/memori-api-client/compare/v6.22.0...v6.23.0) (2026-04-30)
4
+
5
+
6
+ ### Features
7
+
8
+ * add enableScorm property to Tenant type ([89ba708](https://github.com/memori-ai/memori-api-client/commit/89ba7081c08501735574f53277b169818f410686))
9
+
3
10
  ## [6.22.0](https://github.com/memori-ai/memori-api-client/compare/v6.21.0...v6.22.0) (2026-04-24)
4
11
 
5
12
 
package/dist/types.d.ts CHANGED
@@ -328,6 +328,7 @@ export declare type Tenant = {
328
328
  userCount?: number;
329
329
  memoriCount?: number;
330
330
  scormMemoriCount?: number;
331
+ enableScorm?: boolean;
331
332
  ScormMemoriCount?: number;
332
333
  disableRegistration?: boolean;
333
334
  ssoLogin?: boolean;
package/esm/types.d.ts CHANGED
@@ -328,6 +328,7 @@ export declare type Tenant = {
328
328
  userCount?: number;
329
329
  memoriCount?: number;
330
330
  scormMemoriCount?: number;
331
+ enableScorm?: boolean;
331
332
  ScormMemoriCount?: number;
332
333
  disableRegistration?: boolean;
333
334
  ssoLogin?: boolean;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.22.0",
2
+ "version": "6.23.0",
3
3
  "name": "@memori.ai/memori-api-client",
4
4
  "description": "React library to integrate a Memori in your app or website",
5
5
  "license": "Apache-2.0",
package/src/types.ts CHANGED
@@ -592,6 +592,7 @@ export declare type Tenant = {
592
592
  /**
593
593
  * Alias kept for backend payloads that expose PascalCase.
594
594
  */
595
+ enableScorm?: boolean;
595
596
  ScormMemoriCount?: number;
596
597
  disableRegistration?: boolean;
597
598
  ssoLogin?: boolean;