@memori.ai/memori-api-client 6.0.0 → 6.0.1

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.0.1](https://github.com/memori-ai/memori-api-client/compare/v6.0.0...v6.0.1) (2025-03-07)
4
+
5
+
6
+ ### Changes
7
+
8
+ * tenant non optional attributes ([791dd66](https://github.com/memori-ai/memori-api-client/commit/791dd669e90a9d08743f365a4a7f574e0014260d))
9
+
3
10
  ## [6.0.0](https://github.com/memori-ai/memori-api-client/compare/v5.6.0...v6.0.0) (2025-03-07)
4
11
 
5
12
 
package/dist/types.d.ts CHANGED
@@ -284,10 +284,10 @@ export interface UploadFile<T = any> {
284
284
  preview?: string;
285
285
  }
286
286
  export declare type Tenant = {
287
- tenantID?: string;
288
- name?: string;
287
+ tenantID: string;
288
+ name: string;
289
289
  aliases?: string[];
290
- description?: string;
290
+ description: string;
291
291
  logoURL?: string;
292
292
  adminEmail?: string;
293
293
  theme?: string;
package/esm/types.d.ts CHANGED
@@ -284,10 +284,10 @@ export interface UploadFile<T = any> {
284
284
  preview?: string;
285
285
  }
286
286
  export declare type Tenant = {
287
- tenantID?: string;
288
- name?: string;
287
+ tenantID: string;
288
+ name: string;
289
289
  aliases?: string[];
290
- description?: string;
290
+ description: string;
291
291
  logoURL?: string;
292
292
  adminEmail?: string;
293
293
  theme?: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.0.0",
2
+ "version": "6.0.1",
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
@@ -481,10 +481,10 @@ export interface UploadFile<T = any> {
481
481
  }
482
482
 
483
483
  export declare type Tenant = {
484
- tenantID?: string;
485
- name?: string;
484
+ tenantID: string;
485
+ name: string;
486
486
  aliases?: string[];
487
- description?: string;
487
+ description: string;
488
488
  logoURL?: string;
489
489
  adminEmail?: string;
490
490
  theme?: string;