@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 +6 -0
- package/out/schema/manifest-schema.json +22 -0
- package/out/schema/manifest.d.ts +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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
|
},
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -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;
|