@forge/api 6.0.2-next.0 → 6.0.2-next.1-experimental-42e3178

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,20 @@
1
1
  # @forge/api
2
2
 
3
+ ## 6.0.2-next.1-experimental-42e3178
4
+
5
+ ### Patch Changes
6
+
7
+ - 7abca30: Remove SDK dependency on @atlassian/ari
8
+ - 8916328: Fix ARI JSON serialisation
9
+ - Updated dependencies [7abca30]
10
+ - @forge/storage@2.0.2-next.0-experimental-42e3178
11
+
12
+ ## 6.0.2-next.1
13
+
14
+ ### Patch Changes
15
+
16
+ - 8916328: Fix ARI JSON serialisation
17
+
3
18
  ## 6.0.2-next.0
4
19
 
5
20
  ### Patch Changes
@@ -1 +1 @@
1
- {"version":3,"file":"ari.d.ts","sourceRoot":"","sources":["../../src/api/ari.ts"],"names":[],"mappings":"AAAA,UAAU,GAAG;IACX,QAAQ,EAAE,MAAM,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,MAAM,CAAC;CACvB;AAED,oBAAY,MAAM,GAAG,GAAG,GAAG;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAC7C,eAAO,MAAM,SAAS,UAAW,MAAM,KAAG,MAGxC,CAAC;AAEH,oBAAY,cAAc,GAAG,GAAG,GAAG;IAAE,aAAa,EAAE,MAAM,CAAA;CAAE,CAAC;AAC7D,eAAO,MAAM,iBAAiB,UAAW,MAAM,iBAAiB,MAAM,KAAG,cAGvE,CAAC;AAEH,oBAAY,eAAe,GAAG,GAAG,GAAG;IAAE,cAAc,EAAE,MAAM,CAAA;CAAE,CAAC;AAC/D,eAAO,MAAM,kBAAkB,mBAAoB,MAAM,KAAG,eAI1D,CAAC"}
1
+ {"version":3,"file":"ari.d.ts","sourceRoot":"","sources":["../../src/api/ari.ts"],"names":[],"mappings":"AAAA,UAAU,GAAG;IACX,QAAQ,EAAE,MAAM,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,MAAM,CAAC;CACvB;AAED,oBAAY,MAAM,GAAG,GAAG,GAAG;IAAE,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAC7C,eAAO,MAAM,SAAS,UAAW,MAAM,KAAG,MAIxC,CAAC;AAEH,oBAAY,cAAc,GAAG,GAAG,GAAG;IAAE,aAAa,EAAE,MAAM,CAAA;CAAE,CAAC;AAC7D,eAAO,MAAM,iBAAiB,UAAW,MAAM,iBAAiB,MAAM,KAAG,cAIvE,CAAC;AAEH,oBAAY,eAAe,GAAG,GAAG,GAAG;IAAE,cAAc,EAAE,MAAM,CAAA;CAAE,CAAC;AAC/D,eAAO,MAAM,kBAAkB,mBAAoB,MAAM,KAAG,eAI1D,CAAC"}
package/out/api/ari.js CHANGED
@@ -3,12 +3,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getInstallationAri = exports.getEnvironmentAri = exports.getAppAri = void 0;
4
4
  const getAppAri = (appId) => ({
5
5
  appId,
6
- toString: () => `ari:cloud:ecosystem::app/${appId}`
6
+ toString: () => `ari:cloud:ecosystem::app/${appId}`,
7
+ toJSON: () => `ari:cloud:ecosystem::app/${appId}`
7
8
  });
8
9
  exports.getAppAri = getAppAri;
9
10
  const getEnvironmentAri = (appId, environmentId) => ({
10
11
  environmentId,
11
- toString: () => `ari:cloud:ecosystem::environment/${appId}/${environmentId}`
12
+ toString: () => `ari:cloud:ecosystem::environment/${appId}/${environmentId}`,
13
+ toJSON: () => `ari:cloud:ecosystem::environment/${appId}/${environmentId}`
12
14
  });
13
15
  exports.getEnvironmentAri = getEnvironmentAri;
14
16
  const getInstallationAri = (installationId) => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/api",
3
- "version": "6.0.2-next.0",
3
+ "version": "6.0.2-next.1-experimental-42e3178",
4
4
  "description": "Forge API methods",
5
5
  "author": "Atlassian",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -28,7 +28,7 @@
28
28
  "@forge/auth": "0.0.8",
29
29
  "@forge/egress": "2.0.1",
30
30
  "@forge/i18n": "0.0.7",
31
- "@forge/storage": "2.0.2-next.0",
31
+ "@forge/storage": "2.0.2-next.0-experimental-42e3178",
32
32
  "headers-utils": "^3.0.2"
33
33
  },
34
34
  "publishConfig": {