@memori.ai/memori-api-client 4.2.1 → 4.2.2

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
+ ## [4.2.2](https://github.com/memori-ai/memori-api-client/compare/v4.2.1...v4.2.2) (2024-06-12)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * add billingDelegation to tenant ([280fd19](https://github.com/memori-ai/memori-api-client/commit/280fd190ceb99976ec5d5a75e06ae77b3da863c2))
9
+
3
10
  ## [4.2.1](https://github.com/memori-ai/memori-api-client/compare/v4.2.0...v4.2.1) (2024-05-06)
4
11
 
5
12
 
package/dist/types.d.ts CHANGED
@@ -230,6 +230,7 @@ export type TenantBase = {
230
230
  enableBadges?: boolean;
231
231
  enableVirtualSpaces?: boolean;
232
232
  enableDeepThought?: boolean;
233
+ billingDelegation?: boolean;
233
234
  creationTimestamp?: string;
234
235
  lastChangeTimestamp?: string;
235
236
  };
package/esm/types.d.ts CHANGED
@@ -230,6 +230,7 @@ export type TenantBase = {
230
230
  enableBadges?: boolean;
231
231
  enableVirtualSpaces?: boolean;
232
232
  enableDeepThought?: boolean;
233
+ billingDelegation?: boolean;
233
234
  creationTimestamp?: string;
234
235
  lastChangeTimestamp?: string;
235
236
  };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "4.2.1",
2
+ "version": "4.2.2",
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",
@@ -183,6 +183,7 @@
183
183
  "husky": "8.0.2",
184
184
  "is-ci": "3.0.1",
185
185
  "jest": "29.3.1",
186
+ "jest-fetch-mock": "^3.0.3",
186
187
  "prettier": "2.8.0",
187
188
  "release-it": "15.5.0",
188
189
  "rimraf": "3.0.2",
package/src/types.ts CHANGED
@@ -330,6 +330,7 @@ export type TenantBase = {
330
330
  enableBadges?: boolean;
331
331
  enableVirtualSpaces?: boolean;
332
332
  enableDeepThought?: boolean;
333
+ billingDelegation?: boolean;
333
334
  creationTimestamp?: string;
334
335
  lastChangeTimestamp?: string;
335
336
  };