@raytio/core 11.4.0 → 11.4.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
@@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
 
14
14
  ## [Unreleased]
15
15
 
16
+ ## 11.4.0 (2024-12-18)
17
+
18
+ - 💥 BREAKING CHANGE: The `createAA` function now requires the application object to include a `customer_id` instead of `org_id`
19
+
16
20
  ## 11.3.0 (2023-12-05)
17
21
 
18
22
  - Migrate to the v3 API for instances
@@ -31,7 +31,7 @@ const createAATransitions = async ({ apiUrl, apiToken, transitions, }) => fetch(
31
31
  Authorization: `Bearer ${apiToken}`,
32
32
  "Content-Type": "application/json",
33
33
  },
34
- }).then(util_1.handleResponse);
34
+ });
35
35
  /** @internal */
36
36
  const createApplicationPublicKey = async ({ apiUrl, apiToken, aId, publicKey, }) => {
37
37
  const PO = await fetch(`${apiUrl}/db/v1/dsm_access_application_public_keys`, {
@@ -1,4 +1,4 @@
1
- import { Instance } from "@raytio/types";
1
+ import type { Instance } from "@raytio/types";
2
2
  /**
3
3
  * The API response from share/v2/access_application/instance/:iId
4
4
  * returns a complicated hashed_n_id format, so you need to clean up
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raytio/core",
3
- "version": "11.4.0",
3
+ "version": "11.4.1",
4
4
  "license": "MIT",
5
5
  "main": "index",
6
6
  "types": "index",