@adobe/ccweb-add-on-sdk-types 1.20.0 → 1.20.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/ui/ui-sdk.d.ts +8 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/ccweb-add-on-sdk-types",
3
- "version": "1.20.0",
3
+ "version": "1.20.1",
4
4
  "author": "Adobe",
5
5
  "license": "MIT",
6
6
  "description": "Type definitions for Adobe Creative Cloud Web Add-on SDK.",
package/ui/ui-sdk.d.ts CHANGED
@@ -349,6 +349,12 @@ export declare type AuthorizationRequest = {
349
349
  * are required in the Authorization URL as query string parameters.
350
350
  */
351
351
  additionalParameters?: Map<string, string>;
352
+ /**
353
+ * Additional parameters, specific to an OAuth provider which
354
+ * are required in the Redirect URL as query string parameters.
355
+ * Not applicable for {@link AuthorizeWithOwnRedirectRequest}
356
+ */
357
+ additionalRedirectParameters?: Map<string, string>;
352
358
  };
353
359
 
354
360
  /**
@@ -2066,4 +2072,5 @@ export declare enum VideoResolution {
2066
2072
  custom = "custom"
2067
2073
  }
2068
2074
 
2069
- export {};
2075
+ export { };
2076
+