@forge/manifest 9.3.0 → 9.4.0-next.0

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
+ ## 9.4.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 35165ba: Allow additionalConsentParameters in authorization url
8
+
3
9
  ## 9.3.0
4
10
 
5
11
  ### Minor Changes
@@ -27688,6 +27688,28 @@
27688
27688
  "type": "string"
27689
27689
  }
27690
27690
  }
27691
+ },
27692
+ "additionalConsentParameters": {
27693
+ "type": "object",
27694
+ "additionalProperties": {
27695
+ "oneOf": [
27696
+ {
27697
+ "type": "string"
27698
+ },
27699
+ {
27700
+ "type": "object",
27701
+ "properties": {
27702
+ "var": {
27703
+ "type": "string"
27704
+ }
27705
+ },
27706
+ "required": [
27707
+ "var"
27708
+ ],
27709
+ "additionalProperties": false
27710
+ }
27711
+ ]
27712
+ }
27691
27713
  }
27692
27714
  }
27693
27715
  },
@@ -61344,6 +61344,13 @@ export interface AuthorizeActionDefinition {
61344
61344
  */
61345
61345
  [k: string]: string;
61346
61346
  };
61347
+ additionalConsentParameters?: {
61348
+ [k: string]:
61349
+ | string
61350
+ | {
61351
+ var: string;
61352
+ };
61353
+ };
61347
61354
  }
61348
61355
  export interface ExchangeActionDefinition {
61349
61356
  remote: ModuleKeySchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "9.3.0",
3
+ "version": "9.4.0-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {