Skip to content

Commit bf2f4da

Browse files
xerxovksiAbhishek Das
andauthored
Release 20250807 (#44)
* AdditionalRedirectParams in OAuth AuthorizeRequest * Change logs --------- Co-authored-by: Abhishek Das <[email protected]>
1 parent f82e13d commit bf2f4da

File tree

5 files changed

+20
-3
lines changed

5 files changed

+20
-3
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"changes": [
3+
{
4+
"packageName": "@adobe/ccweb-add-on-sdk-types",
5+
"comment": "AdditionalRedirectParams in OAuth's AuthorizeRequest",
6+
"type": "patch"
7+
}
8+
],
9+
"packageName": "@adobe/ccweb-add-on-sdk-types"
10+
}

packages/wxp-sdk-types/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/wxp-sdk-types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/ccweb-add-on-sdk-types",
3-
"version": "1.20.0",
3+
"version": "1.20.1",
44
"author": "Adobe",
55
"license": "MIT",
66
"description": "Type definitions for Adobe Creative Cloud Web Add-on SDK.",

packages/wxp-sdk-types/ui/ui-sdk.d.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,12 @@ export declare type AuthorizationRequest = {
349349
* are required in the Authorization URL as query string parameters.
350350
*/
351351
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>;
352358
};
353359

354360
/**
@@ -2066,4 +2072,5 @@ export declare enum VideoResolution {
20662072
custom = "custom"
20672073
}
20682074

2069-
export {};
2075+
export { };
2076+

scripts/pre-release.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ find -E ./ -type f -regex '.*package\.json' -exec sed -i '.bak' '/"@hz\//d' {} \
55
find . -name '*.bak' -type f -delete
66
find . -name 'owners.yml' -type f -delete
77
find . -name 'BUILD.bazel' -type f -delete
8+
find . -name 'node_modules' -delete
89
find . -name '.mocharc.unit.json' -type f -delete
910
find . -name '.c8rc.unit.json' -type f -delete
1011
rm -rf add-on-manifest/config

0 commit comments

Comments
 (0)