diff --git a/src/pages/guides/changelog/index.md b/src/pages/guides/changelog/index.md index 0d30a9c0..88920813 100644 --- a/src/pages/guides/changelog/index.md +++ b/src/pages/guides/changelog/index.md @@ -15,6 +15,21 @@ contributors: # Changelog +## [4.16.11] - 2024-11-18 + +### Enhancements + +- [`CCEverywhere.appConfig.imageStyleReference`](../../v4/shared/src/types/module/AppConfig.types/interfaces/TextToImageAppConfig.md#properties): in a `createImageFromText()` module, assets can be passed as style reference from host application via `appConfig`. +- [`CCEverywhere.appConfig.imageCompositionReference`](../../v4/shared/src/types/module/AppConfig.types/interfaces/TextToImageAppConfig.md#properties): in a `createImageFromText()` module, assets can be passed as composition reference from host application via `appConfig`. + + + +### Bug Fixes + +- Video Quick Action: Animate from Audio Iframe was not allowing microphone access. + ## [4.15.19] - 2024-10-09 ### Enhancements diff --git a/src/pages/guides/troubleshooting/faq.md b/src/pages/guides/troubleshooting/faq.md index 286927e7..5eb6e1f3 100644 --- a/src/pages/guides/troubleshooting/faq.md +++ b/src/pages/guides/troubleshooting/faq.md @@ -58,13 +58,13 @@ You can add upto five domains with a single API key. Additionally, there is no l ### How do I enable SSO for my service? -To enable Single Sign-On (SSO) for your service, when using Adobe express Embed SDK, you need to set it up using the Adobe admin console. +To enable Single Sign-On (SSO) for your service, when using Adobe express Embed SDK, you need to set it up using the Adobe admin console. Learn to use the Adobe Admin Console to set up [Single Sign-On (SSO)](https://helpx.adobe.com/in/enterprise/using/sso-overview.html) with your Identity provider and troubleshoot setup-related problems. ### Would Adobe need to approve the integrations before my users can start using it? -Your users can use the integrations, but, we will display a red banner indicating, `The experience powered by Adobe Express has not been approved yet`. Once we review and approve your app, we will remove this banner. +Your users can use the integrations, but, we will display a red banner indicating, `The experience powered by Adobe Express has not been approved yet`. Once we review and approve your app, we will remove this banner. ### What is the versioning strategy for the SDK? @@ -72,4 +72,4 @@ The SDK follows a continous release model, with newer versions including bug fix V1 and V2 are deprecated and V3 will be deprecated in 2024. -Please migrate to V4 as soon as possible: we've created a [Migration Guide](../concepts/migration_v3_v4.md) to help you with the transition. \ No newline at end of file +Please migrate to V4 as soon as possible: we've created a [Migration Guide](../concepts/migration_v3_v4.md) to help you with the transition. diff --git a/src/pages/v4/shared/src/types/ConfigManager.types/type-aliases/Config.md b/src/pages/v4/shared/src/types/ConfigManager.types/type-aliases/Config.md index aa8609ec..e76f696e 100644 --- a/src/pages/v4/shared/src/types/ConfigManager.types/type-aliases/Config.md +++ b/src/pages/v4/shared/src/types/ConfigManager.types/type-aliases/Config.md @@ -732,6 +732,18 @@ BRIDGE: object; CLIENT_ID: string; ``` +### CLIENTS.ACROBAT\_EXT + +```ts +ACROBAT_EXT: object; +``` + +### CLIENTS.ACROBAT\_EXT.CLIENT\_ID + +```ts +CLIENT_ID: string; +``` + ### CLIENTS.TEST\_APP ```ts diff --git a/src/pages/v4/shared/src/types/HostInfo.types/enumerations/HostId.md b/src/pages/v4/shared/src/types/HostInfo.types/enumerations/HostId.md index 267e7a0e..8b6d6440 100644 --- a/src/pages/v4/shared/src/types/HostInfo.types/enumerations/HostId.md +++ b/src/pages/v4/shared/src/types/HostInfo.types/enumerations/HostId.md @@ -6,6 +6,7 @@ | ------ | ------ | | `OTHER` | `"Other"` | | `ACROBAT` | `"Acrobat"` | +| `ACROBAT_EXT` | `"ACROBAT_EXT"` | | `CCD` | `"CCD"` | | `CONTENT_CAL` | `"CONTENT_CAL"` | | `STOCK` | `"STOCK"` | diff --git a/src/pages/v4/shared/src/types/HostInfo.types/interfaces/ConfigParamsBase.md b/src/pages/v4/shared/src/types/HostInfo.types/interfaces/ConfigParamsBase.md index a7fc77e2..38af18c1 100644 --- a/src/pages/v4/shared/src/types/HostInfo.types/interfaces/ConfigParamsBase.md +++ b/src/pages/v4/shared/src/types/HostInfo.types/interfaces/ConfigParamsBase.md @@ -6,5 +6,6 @@ Params to configure the application. | Property | Type | Description | | ------ | ------ | ------ | +| `env?` | [`Environment`](../enumerations/Environment.md) | 1P only | | `locale?` | `string` | @TJS-pattern ^[a-z]{2}([_-]([A-Za-z]{2,4}))?([_-][A-Z]{2})?$ | | `skipBrowserSupportCheck?` | `boolean` | **Default** `false` | diff --git a/src/pages/v4/shared/src/types/HostInfo.types/interfaces/HostInfoSpecifiedBase.md b/src/pages/v4/shared/src/types/HostInfo.types/interfaces/HostInfoSpecifiedBase.md index e65c3e9a..8d803270 100644 --- a/src/pages/v4/shared/src/types/HostInfo.types/interfaces/HostInfoSpecifiedBase.md +++ b/src/pages/v4/shared/src/types/HostInfo.types/interfaces/HostInfoSpecifiedBase.md @@ -6,7 +6,7 @@ This interface describes the properties provided by client. | Property | Type | Description | | ------ | ------ | ------ | -| `clientId` | `string` | Client id generated from dev console. Environment(stage/prod) specific client id should be passed. | +| `clientId` | `string` | For 3P - Client id generated from dev console. For 1P - Client id generated from IMSS portal. Environment(stage/prod) specific client id should be passed). | | `appName` | `string` | Client's application name. This name may be used in creating folder for projects in target application. | | `appVersion?` | [`Version`](../../Version.types/interfaces/Version.md) | Client's current version. | | `platformCategory?` | [`PlatformCategory`](../enumerations/PlatformCategory.md) | Client's application type. | diff --git a/src/pages/v4/shared/src/types/editor/AppConfig.types/type-aliases/AppConfig.md b/src/pages/v4/shared/src/types/editor/AppConfig.types/type-aliases/AppConfig.md index d9893e50..79a603b5 100644 --- a/src/pages/v4/shared/src/types/editor/AppConfig.types/type-aliases/AppConfig.md +++ b/src/pages/v4/shared/src/types/editor/AppConfig.types/type-aliases/AppConfig.md @@ -1,5 +1,5 @@ # Type Alias: AppConfig ```ts -type AppConfig: EditorAppConfig; +type AppConfig: EditorAppConfig1P & EditorAppConfig; ``` diff --git a/src/pages/v4/shared/src/types/module/AppConfig.types/interfaces/TextToImageAppConfig.md b/src/pages/v4/shared/src/types/module/AppConfig.types/interfaces/TextToImageAppConfig.md index 7c9f4927..a732d02b 100644 --- a/src/pages/v4/shared/src/types/module/AppConfig.types/interfaces/TextToImageAppConfig.md +++ b/src/pages/v4/shared/src/types/module/AppConfig.types/interfaces/TextToImageAppConfig.md @@ -13,3 +13,5 @@ | `editorTitle?` | `string` | Property to configure the title | - | | `promptText?` | `string` | - | - | | `imageDimensions?` | [`ImageDimensions`](../../../Asset.types/type-aliases/ImageDimensions.md) | The dimensions of the image that the user can generate. If provided, the user will be restricted to generating images of the specified dimensions. | - | +| `imageStyleReference?` | [`Asset`](../../../Asset.types/type-aliases/Asset.md) | Asset to be passed as style reference for generating images | - | +| `imageCompositionReference?` | [`Asset`](../../../Asset.types/type-aliases/Asset.md) | Asset to be passed as composition reference for generating images | - |