@forge/manifest 7.2.3-next.2 → 7.3.0-next.3

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,11 @@
1
1
  # @forge/manifest
2
2
 
3
+ ## 7.3.0-next.3
4
+
5
+ ### Minor Changes
6
+
7
+ - 4c2dc9f: Add support for auth capabilities for remotes specified in the manifest
8
+
3
9
  ## 7.2.3-next.2
4
10
 
5
11
  ### Patch Changes
@@ -17725,6 +17725,37 @@
17725
17725
  },
17726
17726
  "minItems": 1
17727
17727
  },
17728
+ "auth": {
17729
+ "description": "Whether the remote should be provided with tokens to use as-app and / or as-user authentication to make requests to Atlassian APIs",
17730
+ "type": "object",
17731
+ "properties": {
17732
+ "appSystemToken": {
17733
+ "type": "object",
17734
+ "properties": {
17735
+ "enabled": {
17736
+ "type": "boolean"
17737
+ }
17738
+ },
17739
+ "required": [
17740
+ "enabled"
17741
+ ],
17742
+ "additionalProperties": false
17743
+ },
17744
+ "appUserToken": {
17745
+ "type": "object",
17746
+ "properties": {
17747
+ "enabled": {
17748
+ "type": "boolean"
17749
+ }
17750
+ },
17751
+ "required": [
17752
+ "enabled"
17753
+ ],
17754
+ "additionalProperties": false
17755
+ }
17756
+ },
17757
+ "additionalProperties": false
17758
+ },
17728
17759
  "storage": {
17729
17760
  "description": "Options related to remote storage",
17730
17761
  "type": "object",
@@ -56710,6 +56710,17 @@ export interface RemotesSchema {
56710
56710
  * The type of operations done in the remote
56711
56711
  */
56712
56712
  operations?: ['storage' | 'other' | 'compute' | 'fetch', ...('storage' | 'other' | 'compute' | 'fetch')[]];
56713
+ /**
56714
+ * Whether the remote should be provided with tokens to use as-app and / or as-user authentication to make requests to Atlassian APIs
56715
+ */
56716
+ auth?: {
56717
+ appSystemToken?: {
56718
+ enabled: boolean;
56719
+ };
56720
+ appUserToken?: {
56721
+ enabled: boolean;
56722
+ };
56723
+ };
56713
56724
  /**
56714
56725
  * Options related to remote storage
56715
56726
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "7.2.3-next.2",
3
+ "version": "7.3.0-next.3",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {